body {
    min-width: 1024px;
    min-height: 768px;
}
.login-container {
    display: flex;
    flex-direction: column;
}

.login-header {
    margin: 0 auto;
    padding-bottom: 24px;
    height: 20vh;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
}

.logo-box {
    width: 80vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.logo {
    width: 79px;
    height: 35px;
    background: url("../images/logo.png") no-repeat left center;
}

.login-main {
    height: 60vh;
    background: url("../images/bg.jpg") no-repeat center;
    background-size: cover;
}

.login-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1340px;
    margin: 0 auto;
}

.login-box > div {
    flex: 1;
}

.login-box > div:first-child {
    margin-top: 5vh;
    height: 40vh;
    background: url("../images/cover.png") no-repeat center;
    background-size: contain;
}

.login-form {
    margin-top: 5vh;
    margin-left: 5vw;
    margin-right: 5vw;
    padding: 35px 30px;
    width: 350px;
    background: #FFFFFF;
    border-radius: 11px;
}

.login-form .title {
    font-size: 20px;
    color: #1E90FF;
    letter-spacing: 0;
    line-height: 20px;
    padding-left: 25px;
    padding-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.login-input {
    padding: 8px 0 8px 48px;
    border-radius: 21px;
    border: 1px solid #1E90FF;
    outline: none;
    font-size: 18px;
    height: 40px;
}

.icon-box::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 10px;
    display: block;
    width: 18px;
    height: 20px;
    background: url("../images/user.png") no-repeat center;
    background-size: contain;
}

.icon-box.password::before {
    background-image: url("../images/password.png");
}

.icon-box.code::before {
    background-image: url("../images/captcha.png");
}

.login-input:focus {
    border: 1px solid #1E90FF;
    outline: none;
}

.captcha {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 2px;
}

.btn-box {
    padding-top: 20px;
}

.btn-box .btn {
    height: 40px;
    background: #1E90FF;
    border-radius: 25px;
    font-size: 22px;
    color: #ffffff;
}

.btn-box .btn:active {
    outline: none;
    box-shadow: none;
}

.login-footer {
    padding-top: 10px;
    font-size: 24px;
    color: #070707;
    letter-spacing: 0;
    text-align: center;
    line-height: 36px;
}

@media (max-height: 768px) {
    .login-main {
        height: 465px;
    }

    .login-box > div:first-child {
        height: 400px;
    }
}
