/* =====================================================
   Pàgines d'autenticació
   Login, registre, recuperació de contrasenya
===================================================== */

/* Contenidor general de les pàgines d'autenticació */
.page-auth {
    background: #ffffff;
}

/* Layout centralitzat (logo + targeta + enllaços) */
.auth {
    min-height: 100vh;
    display: flex;
    gap: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Bloc de marca */
.auth__brand {
    text-align: center;
}

.auth__logo {
    display: block;
    margin: 0 auto 10px;
}

/* =====================================================
   Targeta (card) d'autenticació
===================================================== */

.auth-card {
    background: var(--surface);
    border: 1px solid rgba(15, 37, 53, 0.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: min(420px, 100%);
    padding: 22px;
}

.auth-card__header {
    text-align: center;
    margin-bottom: 14px;
}

.auth-card__title {
    font-size: 25px;
    margin-bottom: 10px;
}

.auth-card__desc {
    color: var(--muted);
    font-size: 16px;
}

.auth-links {
    text-align: center;
    margin-top: 6px;
}

/* Peu informatiu sota la targeta */
.auth__footer {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

/* =====================================================
   Responsive (mòbil)
===================================================== */

@media (max-width: 480px) {
    .auth {
        padding: 44px 16px;
    }

    .auth-card {
        padding: 18px;
    }
}