/* ── Ardi — Auth Page Styles ─────────────────────────────────────────────── */

/* Override app-wrapper for auth pages */
.app-wrapper { display: block; min-height: 100vh; background: var(--light); }

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px 16px;
    background: linear-gradient(135deg, #073F40 0%, #00804C 55%, #77BD65 100%);
}

.auth-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
}

.auth-card-wide { max-width: 640px; }

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.brand-icon-lg { font-size: 2rem; color: var(--accent); }
.auth-app-name { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.auth-logo-img { display: block; max-width: 180px; max-height: 110px; width: auto; height: auto; object-fit: contain; }

.auth-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
}

.auth-subtitle {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.auth-form { margin-top: 20px; }

.auth-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Password strength meter */
.password-strength {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width .3s, background-color .3s;
}

.strength-weak   { background: var(--error); }
.strength-fair   { background: var(--warning); }
.strength-good   { background: #f9a825; }
.strength-strong { background: var(--success); }

@media (max-width: 480px) {
    .auth-card { padding: 28px 20px; }
    .auth-card-wide { max-width: 100%; }
}
