/* ── Auth Page ── */
.auth-page-wrap {
    background: #f9f9f9;
    padding: 5rem 0;
    min-height: 60vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.auth-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eaeeee;
    border-radius: 16px;
    padding: 2.5rem;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 0.6rem 1.25rem;
    margin-bottom: 1.4rem;
    text-decoration: none;
}

.auth-logo-img {
    height: 65px;
    width: auto;
    display: block;
}

.auth-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

.auth-validation-summary {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 520px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-error {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 0.25rem;
    display: block;
}

.auth-remember-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.auth-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.auth-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-auth-primary {
    width: 100%;
    background: var(--nalltech-blue, #0B313D);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-auth-primary:hover {
    background: #1e4a5a;
}

.auth-footer {
    text-align: center;
    margin-top: 1.75rem;
    font-size: 0.9rem;
    color: #888;
}

.auth-footer a {
    color: var(--nalltech-blue, #0B313D);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.btn-resend-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: .8rem;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.auth-sent-icon {
    font-size: 3rem;
    color: var(--nalltech-blue, #0B313D);
    display: block;
}

.auth-sent-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.auth-forgot-link {
    font-size: 0.8125rem;
    color: var(--nalltech-blue, #0B313D);
    text-decoration: none;
}

    .auth-forgot-link:hover {
        text-decoration: underline;
    }
