<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.forget-password-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:9999;
}

.forget-password-popup-content {
    background:#fff;
    padding:20px;
    border-radius:5px;
    /*height:300px;*/
    /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
}

.forget-password-form-group {
    margin-bottom: 15px;
}

.forget-password-form-group label {
    display:block;
    margin-bottom:5px;
}

input[type="text"], input[type="password"] {
    width:100%;
    padding:8px;
    box-sizing:border-box;
    border:1px solid #ccc;
    border-radius:3px;
}

.forget-password-verification-group .forget-password-verification-box {
    display:flex;
    gap:10px;
}

.forget-password-verification-group button {
    white-space: nowrap;
}

.forget-password-form-group button#confirmBtn {
    width:100%;
    padding:10px;
    background:#007bff;
    color:#fff;
    border:none;
    border-radius:3px;
    cursor:pointer;
}
.forget-password-form-group button#confirmBtn:hover {
    background:#0056b3;
}

.forget-password-hint {
    display:block;
    font-size:12px;
    color:#999;
    margin-top:5px;
}

.forget-password-confirm-btn {
    width: 70px;
    height: 40px;
    border:none;
    border-radius: 5px;
    background: #ff2832;
    color:#fff;
}
#changePasswordGetCodeBtn[disabled]{
    cursor:not-allowed;
}</pre></body></html>