/* ============================================
   AUTH.CSS - FinancePro Authentication Page
   Modern and minimalist design
   ============================================ */

/* Import variables from common.css */
@import url('common.css');

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background-primary, #ffffff);
    color: var(--text-primary, #1e293b);
    overflow-x: hidden;
}

/* ============================================
   BACK TO HOME LINK
   ============================================ */

.back-to-home {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    color: var(--text-secondary, #64748b);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

body.dark-mode .back-to-home {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--border-color);
}

.back-to-home:hover {
    transform: translateX(-4px);
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color, #2563eb);
    color: var(--primary-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body.dark-mode .back-to-home:hover {
    background: rgba(30, 41, 59, 1);
}

.back-to-home i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.back-to-home:hover i {
    transform: translateX(-2px);
}

/* ============================================
   AUTH WRAPPER - MAIN LAYOUT
   ============================================ */

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ============================================
   LEFT SIDE - BRANDING SECTION
   ✅ CORRECTION: TEXTE EN BLANC
   ============================================ */

.auth-branding {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.branding-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: #ffffff; /* ✅ BLANC PAR DÉFAUT */
}

/* Brand Header */
.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.brand-logo svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff; /* ✅ BLANC */
    letter-spacing: -0.02em;
}

.brand-name strong {
    font-weight: 900;
    color: #ffffff; /* ✅ BLANC */
}

.ai-badge-auth {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff; /* ✅ BLANC */
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Features List */
.auth-features {
    margin-bottom: 3rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #ffffff; /* ✅ BLANC */
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-check {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-check i {
    font-size: 0.875rem;
    color: #ffffff; /* ✅ BLANC */
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff; /* ✅ BLANC */
}

.feature-text p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9); /* ✅ BLANC AVEC OPACITÉ */
}

/* Testimonial */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.testimonial-content {
    margin-bottom: 1.25rem;
}

.quote-icon {
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    color: #ffffff; /* ✅ BLANC */
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95); /* ✅ BLANC */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff; /* ✅ BLANC */
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: #ffffff; /* ✅ BLANC */
}

.author-info p {
    font-size: 0.875rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8); /* ✅ BLANC */
}

/* Background Decoration */
.branding-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.decoration-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.decoration-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.3);
    top: -100px;
    right: -100px;
}

.decoration-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(124, 58, 237, 0.4);
    bottom: -50px;
    left: -50px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.decoration-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* ============================================
   RIGHT SIDE - FORMS CONTAINER
   ============================================ */

.auth-forms-container {
    background: var(--background-primary);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-y: auto;
}

.auth-forms-wrapper {
    width: 100%;
    max-width: 480px;
}

/* ============================================
   FORM CARDS
   ============================================ */

.auth-form-card {
    background: var(--background-primary);
    animation: fadeInUp 0.5s ease;
}

.auth-form-card.hidden {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--background-tertiary);
    color: var(--primary-color);
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   SOCIAL LOGIN BUTTONS
   ============================================ */

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: var(--background-primary);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    border-color: var(--border-color-hover);
}

.social-btn:active {
    transform: translateY(0);
}

.social-btn svg,
.social-btn i {
    font-size: 1.25rem;
}

.google-btn:hover {
    border-color: #4285F4;
}

.apple-btn:hover {
    border-color: #000000;
}

body.dark-mode .apple-btn:hover {
    border-color: #ffffff;
}

.microsoft-btn:hover {
    border-color: #00a4ef;
}

/* ============================================
   DIVIDER
   ============================================ */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.divider-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--background-primary);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

body.dark-mode .form-input:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.form-input.error {
    border-color: var(--error-color, #ef4444);
}

.form-input.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-error {
    font-size: 0.875rem;
    color: var(--error-color, #ef4444);
    display: none;
}

.form-error.active {
    display: block;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    background: var(--background-tertiary);
    color: var(--text-primary);
}

.password-toggle i {
    font-size: 1.125rem;
}

/* Password Strength Indicator */
.password-strength {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.strength-bars {
    display: flex;
    gap: 0.25rem;
    flex: 1;
}

.strength-bar {
    height: 4px;
    flex: 1;
    background: var(--border-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-bar.active {
    background: var(--error-color);
}

.strength-bar.active.medium {
    background: var(--warning-color, #f59e0b);
}

.strength-bar.active.strong {
    background: var(--success-color, #10b981);
}

.strength-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 80px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--background-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 0.75rem;
}

.checkbox-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Form Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.forgot-password {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-auth-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-auth-primary:active {
    transform: translateY(0);
}

/* ✅ VERSION SANS SPINNER */
.btn-auth-primary.loading {
    pointer-events: none;
    opacity: 0.7; /* Optionnel : bouton légèrement transparent pendant le chargement */
    cursor: not-allowed;
}

.btn-text {
    transition: opacity 0.3s ease;
}

/* Spinner désactivé */
.btn-loader {
    display: none !important;
}

.spinner {
    display: none !important;
}

.btn-auth-secondary {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--background-primary);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth-secondary:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

body.dark-mode .btn-auth-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* ============================================
   FORM FOOTER
   ============================================ */

.form-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.switch-form-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.switch-form-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.25rem;
    transition: color 0.3s ease;
}

.switch-form-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ============================================
   RESET SUCCESS MESSAGE
   ============================================ */

.reset-success {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 0.5s ease;
}

.reset-success.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.success-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge i {
    font-size: 1rem;
    color: var(--success-color);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    max-width: 420px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left-color: var(--success-color);
}

.toast.error {
    border-left-color: var(--error-color);
}

.toast.warning {
    border-left-color: var(--warning-color);
}

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: var(--success-color);
}

.toast.error .toast-icon {
    color: var(--error-color);
}

.toast.warning .toast-icon {
    color: var(--warning-color);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.toast-close:hover {
    background: var(--background-tertiary);
    color: var(--text-primary);
}

.toast-close i {
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .auth-branding {
        display: none;
    }
    
    .auth-forms-container {
        padding: 2rem 1.5rem;
    }
    
    .back-to-home {
        top: 1.5rem;
        left: 1.5rem;
    }
}

@media (max-width: 640px) {
    .auth-forms-container {
        padding: 1.5rem 1rem;
    }
    
    .auth-forms-wrapper {
        max-width: 100%;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .social-login-buttons {
        gap: 0.5rem;
    }
    
    .social-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .trust-badge {
        font-size: 0.8125rem;
    }
    
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
    
    .back-to-home {
        top: 1rem;
        left: 1rem;
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .back-to-home span {
        display: none;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9375rem;
    }
    
    .social-btn span {
        font-size: 0.8125rem;
    }
    
    .btn-auth-primary,
    .btn-auth-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   DARK MODE ADJUSTMENTS
   ============================================ */

body.dark-mode .auth-forms-container {
    background: var(--background-primary);
}

body.dark-mode .social-btn {
    background: var(--background-secondary);
}

body.dark-mode .form-input {
    background: var(--background-secondary);
}

body.dark-mode .checkbox-custom {
    background: var(--background-secondary);
}

body.dark-mode .toast {
    background: var(--background-secondary);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

body.dark-mode .toast-title {
    color: var(--text-primary);
}

body.dark-mode .toast-message {
    color: var(--text-secondary);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .auth-branding,
    .back-to-home,
    .trust-badges,
    .toast-container {
        display: none !important;
    }
    
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   END OF AUTH.CSS
   ============================================ */