html,body {
    font-family: 'Roboto', 'Kanit' !important;
    font-size: 14px;
    color: #555555;
}
.background {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.login-box {
    position: relative;
    width: 550px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 25px 135px 25px;
    color: #FFFFFF;
}
@media (max-width: 640px) {
    .login-box {
        width: 375px;
        min-height: 40%;
    }
    .login-box {
        padding: 20px 35px 20px;
        width: 90%;
        margin-top: 45px;
    }
}
.logo {
    text-align: center;
    margin-bottom: 15px;
}
.logo img {
    height: 100px;
}
.login-box p {
    margin-top: 15px;
}
.login-box .btn-login {
    width: 100%;
    height: 40px;
    background: #E7371F;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.24), 0px 0px 2px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    outline: none;
    margin-top: 15px;
}
.pass_show {
    position: relative;
}
.pass_show .ptxt {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    color: #555555;
    margin-top: -10px;
    cursor: pointer;
    transition: .3s ease all;
}
.header-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-align: center;
    font-size: 16px;
}
.language-menu {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    cursor: pointer;
}
.language-menu.fx.fx-right > div:nth-child(2)::before{
    content: '|';
    margin: 0 4px;
}
.lang-active{
    border-bottom: 1px solid;
}
.login-panel .login-box .rememberme-checkbox .el-checkbox__inner {
    width: 20px;
    height: 20px;
    border-color: transparent;
}
.remember-me {
    display: flex;
    align-items: center;
}
.remember-me input[type="checkbox"] {
    display: none;
}
.remember-me label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 400;
}
.remember-me label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #FF9900;
    background-color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}
.remember-me input[type="checkbox"]:checked + label::before {
    background-color: #FF9900;
    border-color: #FF9900;
}
.remember-me input[type="checkbox"]:checked + label::after {
    content: '✔';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
}
.remember-me label:hover::before {
    border-color: #FF9900;
}
.login-box a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
}
a.about {
    position: fixed;
    right: 25px;
    top: 15px;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    
    background: #00000020;
    padding: 2px 4px;
    border-radius: 2px;
    color: #fff;
}
.abs-panel-left {
    position: absolute;
    top: 0;
    left: 0;
    margin: 4px 30px;
}
.abs-panel-left .abs-left-box {
    display: flex;
}
.abs-panel-left .abs-left-box .abs-left-menu {
    margin: 0 20px;
}
.abs-left-menu a {
    background: #00000020;
    padding: 2px 4px;
    border-radius: 2px;
    color: #fff;
}
.btn-send {
    width: 100%;
    height: 40px;
    background: #F3A72E;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.24), 0px 0px 2px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    margin: 15px auto;
}