@tailwind base;
@tailwind components;
@tailwind utilities;

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;  /* 水平方向 中央揃え */
    justify-content: center;  /* 垂直方向 中央揃え */
    text-align: center;
}

.login-info {
    display: flex;
}

.login-info {
    position: relative;
}
.login-info input {
    box-sizing: border-box;
    width: 350px;
    margin: 8px 0;
    padding: 0.3em;
    transition: 0.3s;
    border: none;
    outline: none;
    border-bottom: 2px solid dimgray;
}
.login-info input::placeholder {
    color: black;
    font-weight: 500;
}
.login-info input {
    padding-left: 40px;
}
.login-info i {
    position: absolute;
    top: 8px;
    left: 0;
    padding: 9px 8px;
    transition: 0.3s;
    color: black;
}
body {
    background-color: #9e85d0!important;
}
.header {
    background: #FFFFFF;
    position: fixed;
    width: 100%;
    height: 70px;
    z-index: 10000;
    display: flex;
    align-items: center;
}
h1 {
    font-size: 25px;
    margin-left: 14%;
    margin-top:  0.5%;
}


