/* ===================================
   SHARED AUTH STYLES - Clean & Modern Design
   Used by: Admin, Institute, User login/register screens
   =================================== */

/* ===================================
   AUTH PAGE BASE
   =================================== */
.auth-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f4e8 0%, #e8f0dc 50%, #f5f8f0 100%);
    position: relative;
    overflow: hidden;
}

html.auth-html,
html.auth-html body {
    height: 100%;
    overflow: hidden;
}

/* Decorative background elements */
.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(107, 142, 35, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.auth-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(107, 142, 35, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ===================================
   AUTH CONTAINER
   =================================== */
.auth-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

/* ===================================
   AUTH CARD
   =================================== */
.auth-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(107, 142, 35, 0.15),
                0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(107, 142, 35, 0.12);
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
}

.auth-card-wide {
    max-width: 480px;
    margin: 0 auto;
}

.auth-card-scrollable .auth-body {
    overflow-y: auto;
    flex: 1;
}

/* ===================================
   AUTH HEADER
   =================================== */
.auth-header {
    background: linear-gradient(135deg, #6B8E23 0%, #5a7a1f 50%, #4a6619 100%);
    color: white;
    padding: 1.5rem 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

/* Header decorative overlay */
.auth-header::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");
    opacity: 0.5;
    pointer-events: none;
}

.auth-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.auth-logo {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.auth-logo i {
    font-size: 1.5rem;
    color: white;
}

.auth-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
    position: relative;
}

.auth-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    position: relative;
}

/* ===================================
   STEP INDICATOR
   =================================== */
.auth-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(180deg, #f8faf5 0%, #ffffff 100%);
    border-bottom: 1px solid #e8ece2;
    flex-shrink: 0;
}

.auth-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    background: #e8ece2;
    color: #7a8a6a;
    transition: all 0.3s ease;
}

.auth-step-label {
    font-size: 0.8rem;
    color: #7a8a6a;
    font-weight: 500;
    display: none;
}

@media (min-width: 400px) {
    .auth-step-label {
        display: block;
    }
}

.auth-step.active .auth-step-number,
.auth-step.completed .auth-step-number {
    background: #6B8E23;
    color: white;
    box-shadow: 0 2px 8px rgba(107, 142, 35, 0.3);
}

.auth-step.active .auth-step-label {
    color: #5a7a1f;
    font-weight: 600;
}

.auth-step-connector {
    width: 32px;
    height: 2px;
    background: #dce4d0;
    margin: 0 0.5rem;
    border-radius: 1px;
    transition: background 0.3s ease;
}

.auth-step-connector.completed {
    background: #6B8E23;
}

/* ===================================
   AUTH BODY
   =================================== */
.auth-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
}

/* ===================================
   AUTH FORM ELEMENTS
   =================================== */
.auth-form .form-label {
    font-weight: 600;
    color: #3a4a2a;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.auth-form .form-label i {
    color: #6B8E23;
    font-size: 0.9rem;
}

.auth-form .form-control,
.auth-form textarea.form-control {
    border: 2px solid #dce4d0;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background-color: #fafcf8;
    color: #2a3a1a;
}

.auth-form .form-control:hover {
    border-color: #c5d4a8;
}

.auth-form .form-control:focus {
    border-color: #6B8E23;
    box-shadow: 0 0 0 4px rgba(107, 142, 35, 0.15);
    background-color: #ffffff;
    outline: none;
}

.auth-form .form-control::placeholder {
    color: #9aaa8a;
}

.auth-form .form-control.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.auth-form .form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

/* Input with icon */
.auth-input-group {
    position: relative;
}

.auth-input-group .form-control {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.auth-input-group .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6B8E23;
    font-size: 0.95rem;
    z-index: 5;
}

/* Password toggle */
.auth-password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #8a9a7a;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 5;
    transition: color 0.2s ease;
}

.auth-password-toggle:hover {
    color: #6B8E23;
}

/* ===================================
   AUTH BUTTONS
   =================================== */
.btn-auth {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-auth-primary {
    background: linear-gradient(135deg, #6B8E23 0%, #5a7a1f 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(107, 142, 35, 0.3);
}

.btn-auth-primary:hover {
    background: linear-gradient(135deg, #5a7a1f 0%, #4a6619 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 142, 35, 0.4);
    color: white;
}

.btn-auth-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(107, 142, 35, 0.3);
}

.btn-auth-outline {
    background: transparent;
    color: #5a7a1f;
    border: 2px solid #6B8E23;
}

.btn-auth-outline:hover {
    background: #6B8E23;
    color: white;
}

.btn-auth-secondary {
    background: #f0f4e8;
    color: #4a5a3a;
    border: 2px solid #dce4d0;
}

.btn-auth-secondary:hover {
    background: #e4ecd8;
    border-color: #c5d4a8;
    color: #3a4a2a;
}

/* ===================================
   AUTH LINKS
   =================================== */
.auth-links {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e8ece2;
}

.auth-links p {
    margin-bottom: 0.5rem;
    color: #6a7a5a;
    font-size: 0.85rem;
}

.auth-link {
    color: #5a7a1f;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #4a6619;
    text-decoration: underline;
}

/* Inline links - same line */
.auth-inline-links {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e8ece2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.auth-link-divider {
    color: #c5d4a8;
    font-size: 0.9rem;
}

/* ===================================
   AUTH FOOTER
   =================================== */
.auth-footer {
    text-align: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf5 100%);
    border-top: 1px solid #e8ece2;
    flex-shrink: 0;
}

.auth-footer p {
    margin: 0;
    color: #6a7a5a;
    font-size: 0.8rem;
}

.auth-footer a {
    color: #5a7a1f;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ===================================
   AUTH ALERTS
   =================================== */
.auth-alert {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    border: 1px solid;
}

.auth-alert i {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.auth-alert-success {
    background: linear-gradient(135deg, #f0f7e6 0%, #e8f3d6 100%);
    border-color: #c5dfa8;
    color: #3a5a1a;
}

.auth-alert-success i {
    color: #6B8E23;
}

.auth-alert-danger {
    background: linear-gradient(135deg, #fef2f1 0%, #fce8e6 100%);
    border-color: #f5ccc9;
    color: #8a2a24;
}

.auth-alert-danger i {
    color: #dc3545;
}

.auth-alert-info {
    background: linear-gradient(135deg, #f0f6fa 0%, #e6f0f5 100%);
    border-color: #c5dce8;
    color: #2a4a5a;
}

.auth-alert-info i {
    color: #0d6efd;
}

.auth-alert-warning {
    background: linear-gradient(135deg, #fef9e6 0%, #fdf3d0 100%);
    border-color: #f5e6a8;
    color: #6a5a1a;
}

.auth-alert-warning i {
    color: #ffc107;
}

/* ===================================
   AUTH DIVIDER
   =================================== */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.25rem 0;
    color: #8a9a7a;
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dce4d0, transparent);
}

.auth-divider span {
    padding: 0 1rem;
}

/* ===================================
   AUTH CHECKBOX
   =================================== */
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.auth-checkbox input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    accent-color: #6B8E23;
    cursor: pointer;
    border-radius: 4px;
}

.auth-checkbox label {
    font-size: 0.85rem;
    color: #5a6a4a;
    cursor: pointer;
    line-height: 1.4;
}

.auth-checkbox a {
    color: #5a7a1f;
    font-weight: 600;
}

/* ===================================
   AUTH THEME TOGGLE
   =================================== */
.auth-theme-toggle {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(107, 142, 35, 0.2);
    background: #ffffff;
    color: #6B8E23;
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 100;
}

.auth-theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.25);
    background: #6B8E23;
    color: white;
}

.auth-theme-toggle .theme-icon-sun { display: none; }
.auth-theme-toggle .theme-icon-moon { display: block; }

[data-theme="dark"] .auth-theme-toggle .theme-icon-sun { display: block; }
[data-theme="dark"] .auth-theme-toggle .theme-icon-moon { display: none; }

/* ===================================
   FORM STEP (multi-step forms)
   =================================== */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* ===================================
   LOCATION SUGGESTIONS
   =================================== */
.auth-location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #dce4d0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(107, 142, 35, 0.15);
    max-height: 180px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
}

.auth-location-suggestion-item {
    padding: 0.7rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f4e8;
    transition: background-color 0.15s ease;
    font-size: 0.85rem;
    color: #3a4a2a;
}

.auth-location-suggestion-item:last-child {
    border-bottom: none;
}

.auth-location-suggestion-item:hover {
    background-color: #f0f4e8;
}

.auth-location-suggestion-item i {
    color: #6B8E23;
}

/* ===================================
   DARK MODE
   =================================== */
[data-theme="dark"] .auth-page {
    background: linear-gradient(135deg, #0f1410 0%, #151a15 50%, #1a1f1a 100%);
}

[data-theme="dark"] .auth-page::before,
[data-theme="dark"] .auth-page::after {
    background: radial-gradient(ellipse, rgba(107, 142, 35, 0.08) 0%, transparent 60%);
}

[data-theme="dark"] .auth-card {
    background: #1a1f1a;
    border-color: rgba(107, 142, 35, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .auth-header {
    background: linear-gradient(135deg, #2a3520 0%, #1f2a18 50%, #1a2015 100%);
}

[data-theme="dark"] .auth-steps {
    background: linear-gradient(180deg, #151a15 0%, #1a1f1a 100%);
    border-bottom-color: #2a352a;
}

[data-theme="dark"] .auth-step-number {
    background: #1f251f;
    color: #a0b0a0;
}

[data-theme="dark"] .auth-step.active .auth-step-number,
[data-theme="dark"] .auth-step.completed .auth-step-number {
    background: #7a9a3a;
    color: white;
    box-shadow: 0 2px 8px rgba(122, 154, 58, 0.3);
}

[data-theme="dark"] .auth-step-label {
    color: #7a8a7a;
}

[data-theme="dark"] .auth-step.active .auth-step-label {
    color: #9aba4a;
}

[data-theme="dark"] .auth-step-connector {
    background: #2a3028;
}

[data-theme="dark"] .auth-step-connector.completed {
    background: #7a9a3a;
}

[data-theme="dark"] .auth-body {
    background: #1a1f1a;
}

[data-theme="dark"] .auth-form .form-label {
    color: #d0dac0;
}

[data-theme="dark"] .auth-form .form-label i {
    color: #9aba4a;
}

[data-theme="dark"] .auth-form .form-control {
    background-color: #0f1410;
    border-color: #2a352a;
    color: #e0e8e0;
}

[data-theme="dark"] .auth-form .form-control:hover {
    border-color: #3a4a3a;
}

[data-theme="dark"] .auth-form .form-control:focus {
    border-color: #7a9a3a;
    box-shadow: 0 0 0 4px rgba(122, 154, 58, 0.2);
    background-color: #151a15;
}

[data-theme="dark"] .auth-form .form-control::placeholder {
    color: #5a6a5a;
}

[data-theme="dark"] .auth-form .form-control.is-invalid {
    border-color: #dc3545;
    background-color: #1a1515;
}

[data-theme="dark"] .auth-input-group .input-icon {
    color: #9aba4a;
}

[data-theme="dark"] .auth-password-toggle {
    color: #6a7a6a;
}

[data-theme="dark"] .auth-password-toggle:hover {
    color: #9aba4a;
}

[data-theme="dark"] .btn-auth-primary {
    background: linear-gradient(135deg, #6a8a2a 0%, #5a7a20 100%);
    box-shadow: 0 2px 8px rgba(106, 138, 42, 0.3);
}

[data-theme="dark"] .btn-auth-primary:hover {
    background: linear-gradient(135deg, #7a9a3a 0%, #6a8a2a 100%);
    box-shadow: 0 4px 16px rgba(122, 154, 58, 0.4);
}

[data-theme="dark"] .btn-auth-outline {
    color: #9aba4a;
    border-color: #6a8a2a;
}

[data-theme="dark"] .btn-auth-outline:hover {
    background: #6a8a2a;
    color: white;
}

[data-theme="dark"] .btn-auth-secondary {
    background: #1f251f;
    color: #b0bab0;
    border-color: #2a352a;
}

[data-theme="dark"] .btn-auth-secondary:hover {
    background: #252c25;
    border-color: #3a453a;
}

[data-theme="dark"] .auth-links {
    border-top-color: #2a302a;
}

[data-theme="dark"] .auth-links p {
    color: #8a9a8a;
}

[data-theme="dark"] .auth-link {
    color: #9aba4a;
}

[data-theme="dark"] .auth-link:hover {
    color: #aaca5a;
}

[data-theme="dark"] .auth-inline-links {
    border-top-color: #2a302a;
}

[data-theme="dark"] .auth-link-divider {
    color: #4a5a4a;
}

[data-theme="dark"] .auth-footer {
    background: linear-gradient(180deg, #1a1f1a 0%, #151a15 100%);
    border-top-color: #2a352a;
}

[data-theme="dark"] .auth-footer p {
    color: #7a8a7a;
}

[data-theme="dark"] .auth-footer a {
    color: #9aba4a;
}

[data-theme="dark"] .auth-alert-success {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.15) 0%, rgba(107, 142, 35, 0.1) 100%);
    border-color: rgba(107, 142, 35, 0.3);
    color: #9aba4a;
}

[data-theme="dark"] .auth-alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.1) 100%);
    border-color: rgba(220, 53, 69, 0.3);
    color: #e87a6a;
}

[data-theme="dark"] .auth-alert-info {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15) 0%, rgba(13, 110, 253, 0.1) 100%);
    border-color: rgba(13, 110, 253, 0.3);
    color: #7abaf0;
}

[data-theme="dark"] .auth-alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffd54a;
}

[data-theme="dark"] .auth-divider {
    color: #5a6a5a;
}

[data-theme="dark"] .auth-divider::before,
[data-theme="dark"] .auth-divider::after {
    background: linear-gradient(90deg, transparent, #2a352a, transparent);
}

[data-theme="dark"] .auth-checkbox label {
    color: #9aaa9a;
}

[data-theme="dark"] .auth-checkbox a {
    color: #9aba4a;
}

[data-theme="dark"] .auth-theme-toggle {
    background: #1f251f;
    color: #9aba4a;
    border-color: #2a352a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .auth-theme-toggle:hover {
    background: #7a9a3a;
    color: white;
    border-color: #7a9a3a;
}

[data-theme="dark"] .auth-location-suggestions {
    background: #1a1f1a;
    border-color: #2a352a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .auth-location-suggestion-item {
    border-bottom-color: #252a25;
    color: #c0cac0;
}

[data-theme="dark"] .auth-location-suggestion-item:hover {
    background-color: #1f251f;
}

[data-theme="dark"] .auth-location-suggestion-item i {
    color: #9aba4a;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 480px) {
    .auth-page {
        padding: 0.5rem;
    }

    .auth-container {
        max-width: 100%;
    }

    .auth-card {
        border-radius: 12px;
        max-height: calc(100vh - 1rem);
    }

    .auth-header {
        padding: 1.25rem 1.25rem 1rem;
    }

    .auth-logo {
        width: 48px;
        height: 48px;
    }

    .auth-logo i {
        font-size: 1.25rem;
    }

    .auth-title {
        font-size: 1.2rem;
    }

    .auth-subtitle {
        font-size: 0.8rem;
    }

    .auth-body {
        padding: 1.25rem;
    }

    .auth-footer {
        padding: 0.75rem 1.25rem;
    }

    .auth-theme-toggle {
        top: 0.5rem;
        right: 0.5rem;
        width: 38px;
        height: 38px;
    }

    .btn-auth {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .auth-form .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .auth-input-group .form-control {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
}

/* ===================================
   LIGHT THEME EXPLICIT OVERRIDES
   =================================== */
[data-theme="light"] .auth-theme-toggle .theme-icon-sun { display: none; }
[data-theme="light"] .auth-theme-toggle .theme-icon-moon { display: block; }

[data-theme="light"] .auth-page {
    background: linear-gradient(135deg, #f0f4e8 0%, #e8f0dc 50%, #f5f8f0 100%);
}

[data-theme="light"] .auth-page::before,
[data-theme="light"] .auth-page::after {
    opacity: 1;
}

[data-theme="light"] .auth-card {
    background: #ffffff;
    border-color: rgba(107, 142, 35, 0.12);
    box-shadow: 0 10px 40px rgba(107, 142, 35, 0.15),
                0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .auth-header {
    background: linear-gradient(135deg, #6B8E23 0%, #5a7a1f 50%, #4a6619 100%);
}

[data-theme="light"] .auth-steps {
    background: linear-gradient(180deg, #f8faf5 0%, #ffffff 100%);
    border-bottom-color: #e8ece2;
}

[data-theme="light"] .auth-step-number {
    background: #e8ece2;
    color: #7a8a6a;
}

[data-theme="light"] .auth-step.active .auth-step-number,
[data-theme="light"] .auth-step.completed .auth-step-number {
    background: linear-gradient(135deg, #6B8E23 0%, #5a7a1f 100%);
    color: white;
}

[data-theme="light"] .auth-step-label {
    color: #7a8a6a;
}

[data-theme="light"] .auth-step.active .auth-step-label {
    color: #4a6a2a;
}

[data-theme="light"] .auth-step-connector {
    background: #e8ece2;
}

[data-theme="light"] .auth-step-connector.completed {
    background: linear-gradient(135deg, #6B8E23 0%, #5a7a1f 100%);
}

[data-theme="light"] .auth-body {
    background: #ffffff;
}

[data-theme="light"] .auth-form .form-label {
    color: #3a5a2a;
}

[data-theme="light"] .auth-form .form-label i {
    color: #6B8E23;
}

[data-theme="light"] .auth-form .form-control {
    background: #ffffff;
    border-color: #d8e5c8;
    color: #2a4a1a;
}

[data-theme="light"] .auth-form .form-control:hover {
    border-color: #b8d5a0;
}

[data-theme="light"] .auth-form .form-control:focus {
    border-color: #6B8E23;
    background: #fafcf8;
    box-shadow: 0 0 0 4px rgba(107, 142, 35, 0.15);
}

[data-theme="light"] .auth-form .form-control::placeholder {
    color: #a0b090;
}

[data-theme="light"] .auth-input-group .input-icon {
    color: #8a9a7a;
}

[data-theme="light"] .auth-password-toggle {
    color: #8a9a7a;
}

[data-theme="light"] .auth-password-toggle:hover {
    color: #6B8E23;
}

[data-theme="light"] .btn-auth-primary {
    background: linear-gradient(135deg, #7a9a28 0%, #6B8E23 50%, #5a7a1f 100%);
    color: white;
}

[data-theme="light"] .btn-auth-primary:hover {
    background: linear-gradient(135deg, #8aaa38 0%, #7a9a28 50%, #6B8E23 100%);
}

[data-theme="light"] .btn-auth-outline {
    background: transparent;
    border-color: #c8d8b5;
    color: #4a6a3a;
}

[data-theme="light"] .btn-auth-outline:hover {
    background: #f5f8f0;
    border-color: #6B8E23;
    color: #6B8E23;
}

[data-theme="light"] .btn-auth-secondary {
    background: #f5f8f0;
    border-color: #d8e5c8;
    color: #4a6a3a;
}

[data-theme="light"] .btn-auth-secondary:hover {
    background: #eef3e5;
    border-color: #c8d8b5;
}

[data-theme="light"] .auth-links {
    background: linear-gradient(180deg, #fafcf8 0%, #f5f8f0 100%);
}

[data-theme="light"] .auth-links p {
    color: #5a7a4a;
}

[data-theme="light"] .auth-link {
    color: #6B8E23;
}

[data-theme="light"] .auth-link:hover {
    color: #5a7a1f;
}

[data-theme="light"] .auth-inline-links {
    border-top-color: #e8f0dc;
}

[data-theme="light"] .auth-link-divider {
    color: #c8d8b5;
}

[data-theme="light"] .auth-footer {
    background: linear-gradient(180deg, #f5f8f0 0%, #eef3e5 100%);
    border-top-color: #e8f0dc;
}

[data-theme="light"] .auth-footer p {
    color: #7a9a6a;
}

[data-theme="light"] .auth-footer a {
    color: #6B8E23;
}

[data-theme="light"] .auth-alert-success {
    background: #f5f8f0;
    border-color: #c8d8b5;
    color: #3a5a2a;
}

[data-theme="light"] .auth-alert-danger {
    background: #fef5f5;
    border-color: #e8c0c0;
    color: #8a3a3a;
}

[data-theme="light"] .auth-alert-info {
    background: #f5f8fc;
    border-color: #c0d0e8;
    color: #3a5a8a;
}

[data-theme="light"] .auth-alert-warning {
    background: #fefaf5;
    border-color: #e8d8c0;
    color: #8a6a3a;
}

[data-theme="light"] .auth-divider {
    color: #8a9a7a;
}

[data-theme="light"] .auth-divider::before,
[data-theme="light"] .auth-divider::after {
    background: #e8f0dc;
}

[data-theme="light"] .auth-checkbox label {
    color: #5a7a4a;
}

[data-theme="light"] .auth-checkbox a {
    color: #6B8E23;
}

[data-theme="light"] .auth-theme-toggle {
    background: rgba(255, 255, 255, 0.95);
    border-color: #d8e5c8;
    color: #6B8E23;
}

[data-theme="light"] .auth-theme-toggle:hover {
    background: #f5f8f0;
    border-color: #6B8E23;
}

[data-theme="light"] .auth-location-suggestions {
    background: #ffffff;
    border-color: #d8e5c8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .auth-location-suggestion-item {
    color: #3a5a2a;
    border-bottom-color: #e8f0dc;
}

[data-theme="light"] .auth-location-suggestion-item:hover {
    background-color: #f5f8f0;
}

[data-theme="light"] .auth-location-suggestion-item i {
    color: #6B8E23;
}
