body {
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-image: url('/static/image/login_bg.png');
    background-size: 100% 100%;
}

.login-left-box {
    left: 0;
}

.login-left-img {
    height: calc(100vh - 2rem);
    background-image: url('/static/image/login_left_bg.png');
    background-size: cover;
    border-radius: .5rem;
}

.login-form {
    height: calc(100vh - 2rem);
}

.login-form .card {
    width: 480px;
    min-width: 0;
    color: #409fff;
    margin: 0;
    padding: 30px 40px 20px;
    background-color: hsla(0, 0%, 100%, .4);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 3px hsla(0, 0%, 7%, .1);
}

.login-form .card-header {
    background-color: transparent;
    border-bottom: 0;
}

.form-label {
    font-size: 17px;
    margin-bottom: 7px;
}

.form-control {
    height: 40px;
    font-size: 14px;
    line-height: 41px;
    border-radius: 8px;
}

.login_input {
    position: relative;
}

.login_input .form-control {
    padding-right: 60px;
}

#select-name {
    width: 60px;
    height: 37px;
    line-height: 37px;
    font-size: 20px;
    color: #333;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) scale(1.2, 1);
}

.option-name {
    padding: 4px 20px;
    text-align: center;
    color: #333;
}

.option-name:hover {
    cursor: pointer;
    background-color: #eee;
}

#select-name:hover {
    cursor: pointer
}

#options-name {
    min-width: 80px;
    height: auto;
    text-align: center;
    padding-top: 5px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: #666 10px 2px 35px 0;
    position: absolute;
    top: 39px;
    right: 0;
    z-index: 999;
}

#options-name::before {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: -19px;
    border-width: 10px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
}

.hide {
    display: none;
}

#togglePassword {
    width: 60px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .login-form {
        margin: 0 auto;
    }
}