*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
body{
    height: 100%;
}
.container{
    height: 100%;
    background-image: linear-gradient(to right,#999999,#330867);
}
.login-wrapper{
    background-image: linear-gradient(to right,#a6c1ee,#fbc2eb);
    max-width: 358px;
    height: 588px;
    border-radius: 15px;
    padding: 0 50px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.header{
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    line-height: 200px;
    background-image: -webkit-linear-gradient(bottom,red,#fd8403,yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 0 0 0 #888888;
}
.input-item{
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border: 0;
    padding: 10px;
    border-bottom: 1px solid rgb(128,125,125);
    outline: none;
}
input::placeholder{
    color: purple;
}

input{
    width: 100%;
    height: 100%;
    position: relative;
    outline: none;
    border: none;
    box-sizing: border-box;
    padding-left: 5px;
    background-color: transparent;
    color: #0000FF;
    caret-color: #61dafb;
}
.input-item::placeholder{
    text-transform: uppercase;
}
.btn:hover{
    background-image: linear-gradient(to right,#55efc4,#fd79a8);
}
.login-wrapper:hover{

}
.btn{
    border: 0;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: 40px;
    background-image: linear-gradient(to right,#30cfd0,#330867);
    color: #fff;
}
.msg{
    text-align: center;
    line-height: 88px;
    color: palegoldenrod;
}
a{
    text-decoration-line: none;
    color: #abc1ee;
}
form{
    text-align: center;
    transition: all 0.4s;
}
form:hover img{
    transform: scale(1.2);
     background-image: linear-gradient(to right,#a6c1ee,#fbc2eb);
}
#zhuce{
    border-radius: 15px;
}
#zhuceye{
    display: none;
    background-image: linear-gradient(to right,#a6c1ee,#fbc2eb);
    width: 358px;
    /* height: 588px; */
    border-radius: 15px;
    padding: 0 50px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.gender-row {
    margin: 10px 0;
    white-space: nowrap;
}

.gender-row label {
    display: inline-table;
    /* width: 20px; */
    width: auto;
    margin-right: 8%;
    cursor: pointer;
}

.gender-row input[type="radio"] {
    margin-right: 5px;
}

.toggle-password svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.toggle-password:hover svg {
    color: #333;
}

.password-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.password-input {
    width: 100%;
    /* padding: 10px 40px 10px 12px;
    border: 1px solid #ddd; */
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 密码切换按钮图标显示控制 */
.toggle-password .icon-eye {
    display: block !important;
}

.toggle-password .icon-eye-off {
    display: none !important;
}

.toggle-password.active .icon-eye {
    display: none !important;
}

.toggle-password.active .icon-eye-off {
    display: block !important;
}
