.login-item{
    border-radius: 0.8rem;
    height: 5.2rem;
}
.login-item input{
    height: 100%;
    background: none;
}
.password-eye img:nth-of-type(2){
    display: none;
}
.register-btn{
    width: 100%;
    height: 5.4rem;
    background-color: #333333;
}
.login-link::before,.login-link::after{
    content:'';
    display: block;
    width: 26%;
    height: 1px;
    background-color: #E6E6E6;
    color: #333333;
}
#input-code-wraper,#input-password-wraper{
    display: none;
}
.input-code{
    position: relative;

    margin: 0 auto;
}
.field-list {
    display: flex;
    justify-content: space-between;
}
.field-item {
    box-sizing: border-box;
    width:6rem;
    height:4.8rem;
    line-height: 4.6rem;
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
    border: 2px solid rgba(0,0,0,0);
    border-radius: 3px;
    background-color: #f2f2f2;
}
.field-item-focus {
    border-color: var(--color-primary);
}
.field-item-focus::before {
    content: '';
    display: block;
    width: 0.2rem;
    height: 3rem;
    margin: 0.6rem auto;
    background: var(--color-primary);;
    animation: blink 1s steps(1) infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
.field-input {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% + 60px);
    height: 48px;
    padding: 0;
    border: none;
    outline: none;
    opacity: 0;
    background: transparent;
}
.disabled{
    background-color: #999;
}