/* ============================================================================
   eInsightsAI — Auth Theme Pack
   Last Updated: 2025-12-02
   - shared styling for login, forgot, reset
   - clean SaaS layout
============================================================================ */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted, #f7f9fb);
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.auth-form label {
    font-size: 0.95rem;
}

.auth-form input {
    height: 50px;
    border-radius: 10px;
}

.btn-primary {
    background: var(--primary, #029FAD);
    border: none;
    height: 50px;
    border-radius: 10px;
    font-size: 1.05rem;
}

.btn-primary:hover {
    background: var(--primary-dark, #007e88);
}
