/**
 * Dating Core - Premium Authentication Styles
 * Tinder/Bumble Inspired Design System
 *
 * @package DatingCore
 * @version 3.0
 */

/* ==========================================================================
   Fonts & Variables - Unified with Design System
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Serif+Display&display=swap');

:root {
    /* Brand Colors - Warm & Inviting */
    --dc-primary: #FD297B;
    --dc-primary-dark: #E91E63;
    --dc-primary-light: #FF5A92;
    --dc-secondary: #FF655B;
    --dc-accent: #FF9D00;
    
    /* Gradients */
    --dc-gradient-primary: linear-gradient(135deg, #FD297B 0%, #FF655B 100%);
    --dc-gradient-bg: linear-gradient(135deg, #FD297B 0%, #FF5864 25%, #FF8A65 50%, #FFAB40 75%, #FFD54F 100%);
    --dc-gradient-premium: linear-gradient(135deg, #7C3AED 0%, #C026D3 100%);
    
    /* Semantic Colors */
    --dc-success: #10B981;
    --dc-warning: #F59E0B;
    --dc-error: #EF4444;
    --dc-info: #3B82F6;
    
    /* Neutrals */
    --dc-white: #FFFFFF;
    --dc-gray-50: #FAFAFA;
    --dc-gray-100: #F5F5F5;
    --dc-gray-200: #E5E5E5;
    --dc-gray-300: #D4D4D4;
    --dc-gray-400: #A3A3A3;
    --dc-gray-500: #737373;
    --dc-gray-600: #525252;
    --dc-gray-700: #404040;
    --dc-gray-800: #262626;
    --dc-gray-900: #171717;
    
    /* Typography */
    --dc-font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --dc-font-display: 'DM Serif Display', Georgia, serif;
    
    /* Spacing & Sizing */
    --dc-radius-sm: 8px;
    --dc-radius-md: 12px;
    --dc-radius-lg: 16px;
    --dc-radius-xl: 24px;
    --dc-radius-2xl: 32px;
    --dc-radius-full: 9999px;
    
    /* Shadows */
    --dc-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --dc-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --dc-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --dc-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --dc-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --dc-shadow-card: 0 20px 60px rgba(0,0,0,0.15);
    --dc-shadow-button: 0 4px 14px rgba(253,41,123,0.35);
    
    /* Transitions */
    --dc-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dc-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dc-transition-fast: 150ms var(--dc-ease-out);
    --dc-transition-base: 250ms var(--dc-ease-out);
    --dc-transition-slow: 400ms var(--dc-ease-out);
}

/* ==========================================================================
   Auth Container - Full Screen Background
   ========================================================================== */

.dc-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: var(--dc-font-primary);
    position: relative;
    overflow: hidden;
    
    /* Beautiful Animated Gradient Background */
    background: linear-gradient(-45deg, #FD297B, #FF5864, #FF8A65, #FFAB40, #FF5864, #FD297B);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.dc-auth-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Hearts Animation */
.dc-auth-container::after {
    content: '💕';
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ==========================================================================
   Auth Card - Glass Morphism Design
   ========================================================================== */

.dc-auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--dc-radius-2xl);
    box-shadow: var(--dc-shadow-card);
    padding: 48px 40px;
    position: relative;
    z-index: 1;
    animation: cardSlideUp 0.6s var(--dc-ease-out);
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Decorative Top Gradient Bar */
.dc-auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--dc-gradient-primary);
    border-radius: var(--dc-radius-2xl) var(--dc-radius-2xl) 0 0;
}

/* ==========================================================================
   Auth Header - Logo & Welcome
   ========================================================================== */

.dc-auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.dc-auth-header::before {
    content: '💕';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.dc-auth-header h2 {
    margin: 0 0 8px;
    font-family: var(--dc-font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--dc-gray-900);
    letter-spacing: -0.5px;
}

.dc-auth-header p {
    margin: 0;
    color: var(--dc-gray-500);
    font-size: 16px;
    line-height: 1.5;
}

/* ==========================================================================
   Form Elements - Modern Styling
   ========================================================================== */

.dc-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dc-form-group {
    position: relative;
}

.dc-form-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dc-gray-700);
}

.dc-forgot-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--dc-primary);
    text-decoration: none;
    transition: color var(--dc-transition-fast);
}

.dc-forgot-link:hover {
    color: var(--dc-primary-dark);
}

.dc-form-group input[type="text"],
.dc-form-group input[type="email"],
.dc-form-group input[type="password"],
.dc-form-group input[type="date"],
.dc-form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-lg);
    font-size: 16px;
    font-family: var(--dc-font-primary);
    color: var(--dc-gray-900);
    background: var(--dc-white);
    transition: all var(--dc-transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.dc-form-group input:focus,
.dc-form-group select:focus {
    outline: none;
    border-color: var(--dc-primary);
    box-shadow: 0 0 0 4px rgba(253, 41, 123, 0.12);
}

.dc-form-group input::placeholder {
    color: var(--dc-gray-400);
}

.dc-form-group input.has-error,
.dc-form-group select.has-error {
    border-color: var(--dc-error);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.dc-form-group input.has-error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.dc-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 48px;
    cursor: pointer;
}

/* ==========================================================================
   Password Field - Toggle Visibility
   ========================================================================== */

.dc-password-wrapper {
    position: relative;
}

.dc-password-wrapper input {
    padding-right: 54px;
}

.dc-toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--dc-gray-400);
    transition: color var(--dc-transition-fast);
    border-radius: var(--dc-radius-sm);
}

.dc-toggle-password:hover {
    color: var(--dc-gray-700);
    background: var(--dc-gray-100);
}

.dc-toggle-password .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Password Strength Indicator
   ========================================================================== */

.dc-password-strength {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    height: 4px;
}

.dc-password-strength .strength-bar {
    flex: 1;
    height: 100%;
    background: var(--dc-gray-200);
    border-radius: var(--dc-radius-full);
    transition: background var(--dc-transition-base);
}

.dc-password-strength.weak .strength-bar:nth-child(1) {
    background: var(--dc-error);
}

.dc-password-strength.fair .strength-bar:nth-child(1),
.dc-password-strength.fair .strength-bar:nth-child(2) {
    background: var(--dc-warning);
}

.dc-password-strength.good .strength-bar:nth-child(1),
.dc-password-strength.good .strength-bar:nth-child(2),
.dc-password-strength.good .strength-bar:nth-child(3) {
    background: #84CC16;
}

.dc-password-strength.strong .strength-bar {
    background: var(--dc-success);
}

.dc-password-strength-text {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
}

.dc-password-strength.weak + .dc-password-strength-text { color: var(--dc-error); }
.dc-password-strength.fair + .dc-password-strength-text { color: var(--dc-warning); }
.dc-password-strength.good + .dc-password-strength-text { color: #84CC16; }
.dc-password-strength.strong + .dc-password-strength-text { color: var(--dc-success); }

/* ==========================================================================
   Field Hints & Errors
   ========================================================================== */

.dc-field-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--dc-gray-500);
}

.dc-field-error {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dc-error);
    animation: fadeSlideIn 0.2s ease;
}

.dc-field-error.visible {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dc-field-error::before {
    content: '⚠';
    font-size: 12px;
}

@keyframes fadeSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-4px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Checkbox Group - Custom Styled
   ========================================================================== */

.dc-checkbox-group {
    margin-top: 4px;
}

.dc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 14px;
    color: var(--dc-gray-600);
    line-height: 1.6;
}

.dc-checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--dc-primary);
    cursor: pointer;
    border-radius: var(--dc-radius-sm);
}

.dc-checkbox-label a {
    color: var(--dc-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--dc-transition-fast);
}

.dc-checkbox-label a:hover {
    color: var(--dc-primary-dark);
    text-decoration: underline;
}

/* ==========================================================================
   Form Messages - Success/Error/Warning
   ========================================================================== */

.dc-form-message {
    display: none;
    padding: 16px 18px;
    border-radius: var(--dc-radius-lg);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeSlideIn 0.3s ease;
}

.dc-form-message.visible {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dc-form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.dc-form-message.success::before {
    content: '✓';
    font-weight: 700;
}

.dc-form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.dc-form-message.error::before {
    content: '✕';
    font-weight: 700;
}

.dc-form-message.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: #D97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.dc-form-message.warning::before {
    content: '!';
    font-weight: 700;
}

/* ==========================================================================
   Buttons - Premium Action Buttons
   ========================================================================== */

.dc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--dc-radius-full);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--dc-font-primary);
    cursor: pointer;
    transition: all var(--dc-transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dc-btn-block {
    width: 100%;
}

.dc-btn-primary {
    background: var(--dc-gradient-primary);
    color: var(--dc-white);
    box-shadow: var(--dc-shadow-button);
}

.dc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 41, 123, 0.4);
}

.dc-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(253, 41, 123, 0.3);
}

/* Button Shine Effect */
.dc-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
}

.dc-btn-primary:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.dc-btn-secondary {
    background: var(--dc-gray-100);
    color: var(--dc-gray-700);
}

.dc-btn-secondary:hover {
    background: var(--dc-gray-200);
}

.dc-btn:disabled,
.dc-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.dc-btn .dc-btn-loading {
    display: none;
}

.dc-btn.loading .dc-btn-text {
    display: none;
}

.dc-btn.loading .dc-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   Spinner - Loading Animation
   ========================================================================== */

.dc-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Divider - "or" separator
   ========================================================================== */

.dc-auth-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
    color: var(--dc-gray-400);
    font-size: 14px;
    font-weight: 500;
}

.dc-auth-divider::before,
.dc-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--dc-gray-200),
        transparent
    );
}

.dc-auth-divider span {
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

/* ==========================================================================
   Social Login Buttons (Future Enhancement)
   ========================================================================== */

.dc-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dc-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border: 2px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-lg);
    background: var(--dc-white);
    font-size: 15px;
    font-weight: 600;
    color: var(--dc-gray-700);
    cursor: pointer;
    transition: all var(--dc-transition-fast);
}

.dc-social-btn:hover {
    border-color: var(--dc-gray-300);
    background: var(--dc-gray-50);
}

.dc-social-btn img {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   Auth Footer - Sign Up/Log In Link
   ========================================================================== */

.dc-auth-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--dc-gray-200);
}

.dc-auth-footer p {
    margin: 0;
    color: var(--dc-gray-500);
    font-size: 15px;
}

.dc-auth-footer a {
    color: var(--dc-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--dc-transition-fast);
}

.dc-auth-footer a:hover {
    color: var(--dc-primary-dark);
    text-decoration: underline;
}

/* ==========================================================================
   Verification Card - Success/Error States
   ========================================================================== */

.dc-verification-card {
    text-align: center;
    padding: 60px 40px;
}

.dc-verification-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    border-radius: var(--dc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.6s var(--dc-ease-bounce);
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.dc-verification-icon .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
}

.dc-verification-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.dc-verification-success .dashicons {
    color: var(--dc-success);
}

.dc-verification-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.dc-verification-error .dashicons {
    color: var(--dc-error);
}

.dc-verification-card h2 {
    margin: 0 0 12px;
    font-family: var(--dc-font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--dc-gray-900);
}

.dc-verification-card p {
    margin: 0 0 28px;
    color: var(--dc-gray-500);
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================================================
   Modal - Resend Verification
   ========================================================================== */

.dc-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dc-modal-content {
    background: var(--dc-white);
    border-radius: var(--dc-radius-2xl);
    padding: 36px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--dc-shadow-2xl);
    animation: modalSlideUp 0.3s var(--dc-ease-out);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dc-modal-content h3 {
    margin: 0 0 12px;
    font-family: var(--dc-font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--dc-gray-900);
}

.dc-modal-content p {
    margin: 0 0 28px;
    color: var(--dc-gray-500);
    font-size: 15px;
    line-height: 1.6;
}

.dc-modal-actions {
    display: flex;
    gap: 12px;
}

.dc-modal-actions .dc-btn {
    flex: 1;
}

/* ==========================================================================
   Already Logged In State
   ========================================================================== */

.dc-auth-container .dc-auth-card:only-child {
    text-align: center;
}

/* ==========================================================================
   Responsive - Mobile First
   ========================================================================== */

@media (max-width: 540px) {
    .dc-auth-container {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 60px;
    }

    .dc-auth-card {
        padding: 36px 24px;
        border-radius: var(--dc-radius-xl);
    }

    .dc-auth-header::before {
        font-size: 40px;
    }

    .dc-auth-header h2 {
        font-size: 26px;
    }

    .dc-form-row {
        grid-template-columns: 1fr;
    }

    .dc-form-group input[type="text"],
    .dc-form-group input[type="email"],
    .dc-form-group input[type="password"],
    .dc-form-group input[type="date"],
    .dc-form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .dc-btn {
        padding: 14px 24px;
    }

    .dc-modal-actions {
        flex-direction: column;
    }

    .dc-verification-card {
        padding: 40px 24px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .dc-auth-card {
        padding: 28px 20px;
    }

    .dc-auth-header h2 {
        font-size: 22px;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .dc-auth-container {
        padding: 20px;
        align-items: flex-start;
    }

    .dc-auth-header::before {
        display: none;
    }

    .dc-auth-header {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Dark Mode Support (Optional)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .dc-auth-card {
        background: rgba(23, 23, 23, 0.95);
    }

    .dc-auth-header h2 {
        color: var(--dc-gray-100);
    }

    .dc-auth-header p,
    .dc-auth-footer p {
        color: var(--dc-gray-400);
    }

    .dc-form-group label {
        color: var(--dc-gray-300);
    }

    .dc-form-group input,
    .dc-form-group select {
        background: var(--dc-gray-800);
        border-color: var(--dc-gray-700);
        color: var(--dc-gray-100);
    }

    .dc-form-group input:focus,
    .dc-form-group select:focus {
        border-color: var(--dc-primary);
    }

    .dc-checkbox-label {
        color: var(--dc-gray-300);
    }

    .dc-auth-footer {
        border-color: var(--dc-gray-700);
    }

    .dc-modal-content {
        background: var(--dc-gray-800);
    }

    .dc-modal-content h3 {
        color: var(--dc-gray-100);
    }

    .dc-modal-content p {
        color: var(--dc-gray-400);
    }
}

/* ==========================================================================
   Accessibility Improvements
   ========================================================================== */

/* Focus visible for keyboard navigation */
.dc-btn:focus-visible,
.dc-form-group input:focus-visible,
.dc-form-group select:focus-visible,
.dc-toggle-password:focus-visible {
    outline: 3px solid var(--dc-primary);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .dc-auth-container {
        animation: none;
    }

    .dc-auth-container::after {
        animation: none;
    }

    .dc-auth-card {
        animation: none;
    }

    .dc-auth-header::before {
        animation: none;
    }

    .dc-btn-primary::after {
        display: none;
    }

    .dc-verification-icon {
        animation: none;
    }

    .dc-modal-content {
        animation: none;
    }    * {
        transition-duration: 0.01ms !important;
    }
}
