/* --- LOGIN PAGE & FORMS --- */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: calc(100vh - var(--header-height) - 200px); /* Ajuste selon la taille du footer */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.auth-card {
    background: var(--color-card);
    padding: 2.5rem;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.auth-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}
