.container-login {
    background-image: url("/imageT/横图.jpg");
    background-position: -15vw 0;
    background-repeat: no-repeat;
    background-size: 80% 80%;
    
    width: 100vw; 
    height: 100vh;
    position: relative;
    display: flex;
}

.banner-text {
    width: 50%;
    height: 100%;
    /* background: url('/imageT/banner-item2.png') 140px center/800px auto no-repeat; */
}

.login-box {
    width: 50%;
    height: 100%;
    background-image: url("/imageT/Background.png");
    background-size: 100% 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cy-form {
    min-width: 400px;
    max-width: 40%;
   
}

.cy-form p {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 0em;
}

.form-item{
    margin-bottom: 30px;
    border-radius:  10px;
}

.cy-input {
    width: 100%;
    background: rgba(0, 115, 254, 0.09);
    height: 40px;
    border-radius:  10px;
    padding: 10px;
    position: relative;
    display: flex;
}

.cy-input .error {
    position: absolute;
    left: calc(100% + 20px);
    border-radius: 8px;
    height: 100%;
    border: 1px solid rgba(208, 31, 26, 1);
    top: 0;
    display: none;
    white-space:nowrap;
    background: rgba(208, 31, 26, 0.24);
    color: rgba(208, 31, 26, 1);
    padding: 0 10px;
    line-height: 100%;
    align-items: center;
}

.success{
    display: none;
}

.show-err{
    display: flex !important;
}
.form-item-label{
    font-size: 16;
}
.form-item-label label{
    color: rgba(0, 115, 254, 1);

}

.cy-input input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
}
.form-box .err-input{
    background: rgba(216, 31, 38, 0.1);
    border: 1px solid rgba(208, 31, 26, 1);
}
.form-box .success-input{
    border: 1px solid rgba(0, 115, 254, 1)
}

.button {
    width: 178px;
    background: linear-gradient(180deg, #17EDF6 0%, #0073FE 100%);
    box-shadow: 0px 12px 21px 4px rgba(68, 97, 242, 0.15);
    border-radius: 6px;
    height: 48px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.09em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.radio-group{
    display: flex;
    align-items: center;
    gap: 15px;
}
.radio-box{
    display: flex;
    align-items: center;
    position: relative;
}


 input[type="radio"]{
    width: 21px;
    height: 21px;
    position: relative;
    margin-right: 8px;
}

input[type="radio"]:checked::after{
    border: 2px solid #0073FE;
}
 input[type="radio"]::after{
    position: absolute;
    content: "";
    border-radius: 50%;
    border: 2px solid #D9D9D9;
    width: 100%;
    height: 100%;
}

 input[type="radio"]::before{
    position: absolute;
    content: "";
    border-radius: 50%;
    background: #D9D9D9;
    width: 14px;
    height:14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
input[type="radio"]:checked::before{
    background: #0073FE;
}

.btn-code{
    border-radius:0 8px 8px 0 ;
}
@media (max-width:900px) {
    .container-login {
        display: flex;
        flex-direction: column;
        background-position: -5rem 0;
        background-size: auto 100%;
    }
    .banner-text{
        /* height:50%; */
        display: none;
        width: 100%;
        background: url('/imageT/banner-item2.png') center center/100% auto no-repeat;
    }
    .login-box{
        height:100%;
        /* background: transparent; */
        width: 100%;
        bottom: 0;
    }
    .cy-form {
        min-width: 300px;
        max-width: 100%;
    }
    .cy-input .error {
        position: absolute;
        left: 0;
        border-radius: 8px;
        height: 60%;
        top: calc(100% + 2px);
        display: none;
        padding: 0 10px;
    }
    .button{
        width: 140px;
    }
}