/* DSMLoginHelper Inline Styles - Extracted from PHP */

/* ===========================
   AGE VERIFICATION LABEL STYLES
   =========================== */

/* Age verification label styling for registration form */
.age-verification-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 10px 0;
    color: #ffffff;
}

.age-verification-label input[type="checkbox"] {
    display: none;
}

.age-verification-label .checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.age-verification-label input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.age-verification-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* ===========================
   INLINE STYLE REPLACEMENTS
   =========================== */

/* Form error display */
.form-error {
    display: block;
    margin-top: 20px;
}

/* Form success display */
.form-success {
    display: block;
    margin-top: 20px;
}

/* Hidden form */
#dsm-login-form {
    display: none;
}

/* Google login group */
.google-login-group {
    text-align: center;
    margin-top: 15px;
}

/* Blue theme for age verification checkbox when not logged in */
body.dsm-user-not-logged-in .age-verification-label input[type="checkbox"]:checked + .checkmark {
    background: #2196F3;
    border-color: #2196F3;
}

body.dsm-user-not-logged-in .age-verification-label .checkmark {
    border-color: rgba(33, 150, 243, 0.3);
}

/* Blue theme for remember me checkbox when not logged in */
body.dsm-user-not-logged-in #modal_rememberme {
    accent-color: #2196F3;
}

body.dsm-user-not-logged-in label[for="modal_rememberme"] {
    color: #fff;
}

 