/* =========================================
   AUTH PAGES (login / register / password reset)
========================================= */

.auth-section {
    display: flex;
    align-items: center;
    padding: 90px 0;
    min-height: 70vh;
    background: #f7faf9;
}

.auth-container {
    max-width: 460px;
}

.auth-card {
    padding: 32px 34px 30px;
    border: 1px solid #d7dfde;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 58, 65, 0.07);
}

.auth-heading {
    margin-bottom: 24px;
    text-align: center;
}

.auth-heading h2 {
    margin: 0 0 8px;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
}

.auth-heading p {
    margin: 0;
    color: #486c71;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.6;
}

.auth-footer-link {
    margin-top: 18px;
    text-align: center;
    color: #648086;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
}

.auth-footer-link a {
    color: #0a99a5;
    font-weight: 700;
    text-decoration: none;
}

.auth-footer-link a:hover {
    color: #067c86;
}

.auth-forgot-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #648086;
    font-family: "DM Sans", sans-serif;
    font-size: 12.5px;
    text-decoration: none;
}

.auth-forgot-link:hover {
    color: #0a99a5;
}

@media (max-width: 575.98px) {
    .auth-section {
        padding: 60px 0;
    }

    .auth-card {
        padding: 26px 22px 24px;
    }
}
