* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", sans-serif;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    min-width: 100%;
}

.wrap {
    width: 100%;
    height: 100vh;
    background: url(../images/loginBg.png) no-repeat center/cover;
}

form {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginBox {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0px 7px 10px 0px rgba(102, 8, 9, 0.3), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px 20px 20px 20px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 0 77px 90px 77px;
}

.loginBox .img_div {
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

.loginBox h4 {
    font-weight: bold;
    font-size: 30px;
    color: #AE0C2A;
    /* padding: 90px 0; */
    padding: 15px 0 35px 0;
}

.fromGroup {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fromGroup .inpItem {
    width: 100%;
    background: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 18px 16px;
    align-items: center;
    transition: all ease-in-out 0.3s;
    border-color: #AE0C2A;
    position: relative;
    overflow: hidden;
}

.fromGroup .inpItem svg {
    flex-shrink: 0;
    margin-right: 6px;
}

.fromGroup .inpItem input {
    border: none;
    outline: none;
    flex: 1;
    overflow: hidden;
    height: 100%;
    height: 24px;
    color: #333;
    border-left: 1px solid #AE0C2A;
    padding-left: 15px;
    font-size: 16px;
}

.fromGroup .codeItem input {
    flex: 0 0 calc(100% - 160px);
}

input::placeholder {
    color: #999;
}

.remberPass {
    display: flex;
    gap: 8px;
    margin-top: -20px;
}

.remberPass input {
    border-color: #999;
    border-width: 2px;
}

.remberPass p {
    font-size: 14px;
    color: #999999;
}

.code {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: #AE0C2A;
    padding: 0 25px;
    position: absolute;
    right: 0;
    height: 100%;
}

.code a {
    font-size: 16px;
    color: #fff;
    flex: 1;
}

.loginBtn {
    width: 100%;
    height: 62px;
    background: linear-gradient( 90deg, #CA0025 0%, #BB0728 55%, #AE0C2A 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px 10px 10px 10px;
    margin-top: 54px;
    outline: none;
    border: none;
    font-size: 20px;
    color: #FFFFFF;
}

.loginBtn:active,
.loginBtn:hover {
    background: #9e2b2b;
    transition: background ease-in-out 0.3s;
}