body{
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #4d4d4d;
}
.login_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login_wrapper .login_area {
    width: 90%;
}

/*login.ctp*/
.site_title {
    margin-bottom: 40px;
    font-size: 3.2rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.site_title .af_name {
    font-size: 5.0rem;
    font-family: 'Kanit', sans-serif;
}
.site_title img {
    margin-bottom: 20px;
}

.input_area {
    margin-bottom: 40px;
}
.input_area dl {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 10px;
}
.input_area dl dt {
    margin-bottom: 5px;
    font-weight: 500;
}
.input_area dl dd {
}
.input_area dl dd input {
    width: 100%;
    font-size: 1.8rem;
    padding: 4px 10px;
    font-family: 'Kanit', sans-serif;
}
.button_area {
    margin-bottom: 20px;
}

.remarks_area {
}
.remarks_area a {
    color: #4d4d4d;
}

@media (max-width: 900px) {
    .site_title .af_name {
        font-size: 3.6rem;
    }
}


.message.error{
    max-width: 390px;
    padding: 30px;
    background: #f88383;
    color: white;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    font-weight: bold;
}
