body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    /* background-image: linear-gradient(90deg, #07203e, #11294e 40%, #1a325e); */
    background-image: linear-gradient(125deg, #8ab5f8, #c9d7f2, #add3f5, #a3b5f4, #d6e3f9);
    /* background-image: linear-gradient(125deg,#d9edff,#8fcafd,#dff5ff,#b3e3f9);
    background-size: 400%;
    animation: bgAnimation 15s infinite; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@keyframes bgAnimation {
    0%{
      background-position: 0% 50%;
    }
    50%{
      background-position: 100% 50%;
    }
    100%{
      background-position: 0% 50%;
    }
}

.login-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-div-content {
    position: relative;
    min-height: 540px;
    display: flex;
}
/* .login-div-content .logo-box {
    flex: 1;
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1f3b61;
    color: #04aff1;
    padding: 30px;
    border-radius: 6px 0 0 6px;
}
.login-div-content .logo-box .logo {
    width: 200px;
}
.login-div-content .logo-box .logo img {
    max-width: 100%; max-height: 100%;
}
.login-div-content .logo-box .title {
    font-size: 38px;
    padding-top: 30px;
    letter-spacing: 10px;
}
.login-div-content .logo-box .sub-title {
    font-size: 20px;
    font-weight: bold;
    padding-top: 15px;
    opacity: 0.5;
} */

.login-div-content .main-box {
    flex: 1;
    background-color: #fff;
    width: 446px;
    padding: 25px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.2);
}
.login-div-content .main-box .header-box {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.login-div-content .main-box .header-box .title-box {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.login-div-content .main-box .header-box .title-box .logo-box {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 5px;
}
.login-div-content .main-box .header-box .title-box .logo-box img {
	width: 100%;
	height: 100%;
}

.login-div-content .main-box .header-box h1 {
    color: var(--lg-color-primary);
    font-size: 30px;
    font-weight: normal;
}
.login-div-content .main-box .header-box h4 {
    position: relative;
    font-size: 13px;
    color: #999;
    text-transform: capitalize;
    width: 80%;
}
.login-div-content .main-box .header-box h4:after,
.login-div-content .main-box .header-box h4:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 24%;
    height: 1px;
    background-color: #ddd;
}
.login-div-content .main-box .header-box h4:before {
    left: 0;
}
.login-div-content .main-box .header-box h4:after {
    right: 0;
}

.login-div-content .main-box .field-box {
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
}
.login-div-content .main-box .field-box .icon {
    position: absolute;
    top: 50%;
    left: 5px;
    font-size: 18px;
    color: var(--lg-color-primary);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.login-div-content .main-box .field-box input {
    border: none;
    border-bottom: 1px solid #ddd;
    height: 48px;
    width: 100%;
    font-size: 15px;
    color: #222;
    outline: none;
    padding-left: 40px;
}
.login-div-content .main-box .field-box input::-webkit-input-placeholder {
    color: #d8d8d8;
}
.login-div-content .main-box .field-box input:focus {
    border-color: var(--lg-color-primary);
}

.login-div-content .main-box .submit-box {
    margin-top: 60px;
}

.submit-box .submit-btn {
    display: block;
    height: 48px;
    background-color: var(--lg-color-primary);
    border-radius: 30px;
    line-height: 44px;
    text-decoration: none;
    color: #fff;
    font-family: "微软雅黑";
    font-size: 18px;
    border: 2px solid #fff;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    text-align: center;
}
.submit-box .submit-btn:hover {
    border: 2px solid #fff;
    background-position: 150px center;
    text-decoration: none;
}
.submit-box .submit-btn .line {
    display: block;
    position: absolute;
    background: none;
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    -ms-transition: 0.6s ease;
}

.submit-box .submit-btn:hover .line {
    background: var(--lg-color-primary);
}
.submit-box .submit-btn .line_top {
    height: 2px;
    width: 0px;
    left: -100%;
    top: -2px;
}
.submit-box .submit-btn:hover .line_top {
    width: 100%;
    left: -0px;
}
.submit-box .submit-btn .line_bottom {
    height: 2px;
    width: 0px;
    right: -100%;
    bottom: -2px;
}
.submit-box .submit-btn:hover .line_bottom {
    width: 100%;
    right: -0px;
}
.submit-box .submit-btn .line_left {
    height: 0px;
    width: 2px;
    bottom: -100%;
    left: -2px;
}
.submit-box .submit-btn:hover .line_left {
    height: 100%;
    bottom: -0px;
}
.submit-box .submit-btn .line_right {
    height: 0px;
    width: 2px;
    top: -100%;
    right: -2px;
}
.submit-box .submit-btn:hover .line_right {
    height: 100%;
    top: -0px;
}

.copyright-box {
    position: absolute;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    color: #f6f6f6;
}

.forget-pwd {
    text-decoration: none;
}
.forget-pwd:hover {
    color: green;
    text-decoration: underline;
}

input:autofill {
    box-shadow: 0 0 0 1000px white inset !important;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
