/* Enhanced Authentication Styles - Advanced Version */

/* Enhanced Auth Container */
.auth-container {
    max-width: 480px;
    margin: 50px auto;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.auth-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(79, 172, 254, 0.02), 
        transparent);
    animation: authContainerShimmer 8s infinite;
    pointer-events: none;
}

@keyframes authContainerShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Enhanced Auth Header */
.auth-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    animation: authHeaderShimmer 4s infinite;
    pointer-events: none;
}

@keyframes authHeaderShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.auth-header h1 {
    font-size: 2.4em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.auth-header p {
    opacity: 0.95;
    font-size: 1.15em;
    position: relative;
    z-index: 1;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Auth Form */
.auth-form {
    padding: 40px 35px 35px;
    position: relative;
}

/* Enhanced Form Group */
.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2c3e50;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group:focus-within label::after {
    opacity: 1;
}

/* Enhanced Form Input */
.form-group input {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: #4facfe;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 
        0 0 0 4px rgba(79, 172, 254, 0.1),
        0 8px 25px rgba(79, 172, 254, 0.15);
    transform: translateY(-3px);
}

.form-group input::placeholder {
    color: #adb5bd;
    font-style: italic;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder {
    opacity: 0.6;
    transform: translateX(10px);
}

/* Enhanced Auth Button */
.auth-btn {
    width: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #3a9bfd 0%, #00d9fd 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:active {
    transform: translateY(-1px);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    position: relative;
}

.auth-btn:disabled::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: authButtonSpin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes authButtonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Auth Toggle */
.auth-toggle {
    text-align: center;
    margin-top: 30px;
    color: #6c757d;
    font-size: 15px;
    position: relative;
}

.auth-toggle a {
    color: #4facfe;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.auth-toggle a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.auth-toggle a:hover {
    color: #0056b3;
    transform: translateY(-2px);
}

.auth-toggle a:hover::before {
    opacity: 1;
}

/* Enhanced Forgot Password Link */
.forgot-password-link {
    display: inline-block;
    color: #4facfe;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%);
    border: 2px solid rgba(79, 172, 254, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.forgot-password-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(79, 172, 254, 0.15), 
        transparent);
    transition: left 0.6s ease;
}

.forgot-password-link:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.25);
    border-color: rgba(79, 172, 254, 0.4);
    color: #0056b3;
}

.forgot-password-link:hover::before {
    left: 100%;
}

/* Enhanced Error Message */
.error-message {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    color: #c53030;
    padding: 18px 22px;
    border-radius: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    border: 2px solid #fc8181;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: errorSlideIn 0.4s ease-out;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message::before {
    content: "⚠️ ";
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

.error-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: errorShimmer 2s ease-in-out;
}

@keyframes errorShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Success Message */
.success-message {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    color: #2d7738;
    padding: 18px 22px;
    border-radius: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    border: 2px solid #68d391;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: successSlideIn 0.4s ease-out;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message::before {
    content: "✅ ";
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

.success-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: successShimmer 2s ease-in-out;
}

@keyframes successShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Form Headers for Reset Forms */
.form-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.form-header .icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.form-header h3 {
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.form-header p {
    color: #6c757d;
    font-size: 15px;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

/* Enhanced Reset User Name Display */
#resetUserName {
    background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
    color: #0066cc;
    font-weight: 700;
    font-size: 17px;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid rgba(79, 172, 254, 0.3);
    display: inline-block;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

#resetUserName::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: resetUserShimmer 3s ease-in-out infinite;
}

@keyframes resetUserShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Form Group Small Text */
.form-group small {
    display: block;
    margin-top: 10px;
    font-style: italic;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%);
    padding: 10px 16px;
    border-radius: 20px;
    border-left: 4px solid #4facfe;
    font-size: 12px;
    color: #495057;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group small::before {
    content: '💡 ';
    margin-right: 5px;
}

/* ========================================
   PASSWORD TOGGLE BUTTON STYLES
   ======================================== */

/* Wrapper for password input with button */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 55px; /* Make room for the eye button */
    flex: 1;
}

/* Eye icon toggle button */
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10;
}

.toggle-password:hover {
    background: rgba(79, 172, 254, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.toggle-password:active {
    transform: translateY(-50%) scale(0.95);
}

.eye-icon {
    font-size: 20px;
    display: block;
    line-height: 1;
    user-select: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Default eye icon when password is hidden */
.eye-icon::before {
    content: '👁️';
}

.toggle-password:hover .eye-icon {
    opacity: 1;
}

/* When password is visible, show closed eye */
.toggle-password.password-visible .eye-icon::before {
    content: '🙈';
}

/* Accessibility improvements */
.toggle-password:focus {
    outline: 2px solid rgba(79, 172, 254, 0.6);
    outline-offset: 2px;
}

/* ========================================
   REMEMBER ME SECTION WITH TOGGLE SWITCH
   ======================================== */

/* Enhanced Remember Me Section with Toggle Switch */
.remember-me-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 20px 0;
    text-align: center;
}

.remember-me-header {
    margin-bottom: 15px;
    text-align: center;
}

.remember-me-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.remember-me-title::before {
    content: '🔒';
    font-size: 16px;
}

.remember-me-help {
    margin: 0;
    padding: 0;
    text-align: center;
}

.remember-me-help small {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
    display: block;
    text-align: center;
}

/* Center the toggle switch properly */
.toggle-switch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    width: 100%;
}

/* Ensure the toggle container is also centered */
.toggle-switch-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    cursor: pointer !important;
    user-select: none !important;
    position: relative !important;
    margin: 0 auto !important;
}

/* Force hide any default checkbox styling */
.toggle-switch-container input[type="checkbox"] {
    display: none !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
}

/* Toggle Switch with Enhanced Color Contrast */
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); /* Clear RED for OFF */
    border-radius: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(231, 76, 60, 0.3), 0 0 8px rgba(231, 76, 60, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Toggle Switch - ON State with Bright Green */
.toggle-switch-container input[type="checkbox"]:checked + .toggle-switch {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); /* Clear GREEN for ON */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(46, 204, 113, 0.4), 0 0 12px rgba(46, 204, 113, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.toggle-switch-container input[type="checkbox"]:checked + .toggle-switch .toggle-slider {
    transform: translateX(24px);
    box-shadow: 0 2px 10px rgba(46, 204, 113, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
}

/* Enhanced Toggle Labels with Better Color Feedback and Spacing */
.toggle-labels {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased spacing between labels */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-off {
    color: #e74c3c; /* RED color to match OFF state */
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.toggle-on {
    color: #27ae60; /* GREEN color to match ON state */
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* When toggle is ON - highlight ON label, fade OFF label */
.toggle-switch-container input[type="checkbox"]:checked ~ .toggle-labels .toggle-off {
    color: #bdc3c7; /* Faded gray */
    opacity: 0.4;
}

.toggle-switch-container input[type="checkbox"]:checked ~ .toggle-labels .toggle-on {
    color: #27ae60 !important; /* Force bright green */
    text-shadow: 0 0 8px rgba(39, 174, 96, 0.6);
    opacity: 1;
    transform: scale(1.15);
    font-weight: 800;
}

/* When toggle is OFF - highlight OFF label, fade ON label */
.toggle-switch-container input[type="checkbox"]:not(:checked) ~ .toggle-labels .toggle-off {
    color: #e74c3c !important; /* Force bright red */
    text-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
    opacity: 1;
    transform: scale(1.15);
    font-weight: 800;
}

.toggle-switch-container input[type="checkbox"]:not(:checked) ~ .toggle-labels .toggle-on {
    color: #bdc3c7; /* Faded gray */
    opacity: 0.4;
}

/* Hover Effects */
.toggle-switch-container:hover .toggle-switch {
    transform: scale(1.02);
}

.toggle-switch-container:hover .toggle-slider {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.toggle-switch-container input[type="checkbox"]:checked:hover + .toggle-switch .toggle-slider {
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.5);
}

.toggle-switch-container:hover input[type="checkbox"]:not(:checked) + .toggle-switch {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(231, 76, 60, 0.4), 0 0 12px rgba(231, 76, 60, 0.2);
}

/* Active/Click Effect */
.toggle-switch-container:active .toggle-switch {
    transform: scale(0.98);
}

/* Focus accessibility */
.toggle-switch-container:focus-within .toggle-switch {
    outline: 2px solid #4facfe;
    outline-offset: 2px;
}

/* Override any global checkbox styles that might interfere */
.remember-me-section *::before,
.remember-me-section *::after {
    content: none !important;
}

/* Force hide any stray checkboxes */
.remember-me-section [type="checkbox"]:not(.toggle-switch input) {
    display: none !important;
}

/* Clean slate for toggle area */
.toggle-switch-wrapper * {
    box-sizing: border-box !important;
}

/* ========================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    .auth-container {
        margin: 20px 15px;
        max-width: none;
        border-radius: 20px;
    }

    .auth-header {
        padding: 35px 25px;
    }

    .auth-header h1 {
        font-size: 2em;
    }

    .auth-form {
        padding: 30px 25px;
    }

    .forgot-password-link {
        font-size: 13px;
        padding: 12px 24px;
    }

    .form-group input {
        padding: 16px 20px;
    }

    .auth-btn {
        padding: 18px;
        font-size: 15px;
    }

    /* Mobile password toggle adjustments */
    .toggle-password {
        right: 10px;
        padding: 10px;
    }
    
    .eye-icon {
        font-size: 22px;
    }
    
    .password-input-wrapper input {
        padding-right: 50px;
    }

    /* Mobile remember me adjustments */
    .remember-me-section {
        padding: 15px 16px;
        margin: 15px 0;
        text-align: center;
    }
    
    .remember-me-title {
        font-size: 15px;
        justify-content: center;
    }
    
    .remember-me-help small {
        font-size: 12px;
        text-align: center;
    }
    
    .toggle-switch-wrapper {
        padding: 12px 0;
        justify-content: center;
    }
    
    .toggle-switch-container {
        justify-content: center !important;
    }
    
    .toggle-switch {
        width: 48px;
        height: 26px;
    }
    
    .toggle-slider {
        width: 20px;
        height: 20px;
        top: 3px;
        left: 3px;
    }
    
    .toggle-switch-container input[type="checkbox"]:checked + .toggle-switch .toggle-slider {
        transform: translateX(22px);
    }
    
    .toggle-labels {
        font-size: 12px;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .auth-container {
        margin: 15px 10px;
    }

    .auth-header {
        padding: 30px 20px;
    }

    .auth-header h1 {
        font-size: 1.8em;
    }

    .auth-form {
        padding: 25px 20px;
    }

    .form-header .icon {
        font-size: 54px;
    }
}

/* ========================================
   ACCESSIBILITY & BROWSER SUPPORT
   ======================================== */

/* Enhanced Accessibility */
.auth-btn:focus,
.form-group input:focus,
.forgot-password-link:focus,
.auth-toggle a:focus {
    outline: 3px solid rgba(79, 172, 254, 0.6);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .auth-container {
        border: 3px solid #000;
        background: #fff;
    }
    
    .auth-header {
        background: #000;
        color: #fff;
    }
    
    .auth-btn,
    .forgot-password-link {
        border: 3px solid #000;
    }
    
    .form-group input {
        border: 3px solid #000;
        background: #fff;
    }

    .toggle-password {
        border: 2px solid #000;
    }
    
    .eye-icon {
        opacity: 1;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .auth-container,
    .auth-btn,
    .form-group input,
    .forgot-password-link,
    .error-message,
    .success-message,
    .form-header .icon,
    .toggle-switch,
    .toggle-slider,
    .toggle-labels * {
        animation: none;
        transition: none;
    }
    
    .auth-container::after,
    .auth-header::before {
        animation: none;
    }
}