/* =========================
   Password Reset Auth Pages
========================= */

.auth-page {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background:
        radial-gradient(circle at 14% 16%, rgba(213, 173, 40, 0.16), transparent 30%),
        radial-gradient(circle at 86% 10%, rgba(7, 19, 38, 0.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4f4f1 100%);
}

.auth-bg {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(80px);
}

.auth-bg-one {
    width: 520px;
    height: 520px;
    right: -180px;
    top: 80px;
    background: rgba(213, 173, 40, 0.16);
}

.auth-bg-two {
    width: 460px;
    height: 460px;
    left: -180px;
    bottom: -140px;
    background: rgba(7, 19, 38, 0.12);
}

.auth-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
}

.auth-card {
    width: 100%;
    border: 1px solid rgba(7, 19, 38, 0.08);
    border-radius: 28px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(7, 19, 38, 0.12);
    backdrop-filter: blur(18px);
}

.auth-header {
    margin-bottom: 26px;
}

.auth-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d5ad28;
}

.auth-header h1 {
    margin: 0 0 10px;
    color: #071326;
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.auth-header p {
    margin: 0;
    color: rgba(7, 19, 38, 0.68);
    font-size: 0.98rem;
    line-height: 1.65;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-field {
    display: grid;
    gap: 8px;
}

.auth-field label {
    color: #071326;
    font-size: 0.9rem;
    font-weight: 750;
}

.auth-field input {
    width: 100%;
    border: 1px solid rgba(7, 19, 38, 0.12);
    border-radius: 16px;
    padding: 14px 15px;
    background: #ffffff;
    color: #071326;
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus {
    border-color: rgba(213, 173, 40, 0.75);
    box-shadow: 0 0 0 4px rgba(213, 173, 40, 0.14);
}

.auth-btn {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 15px 18px;
    background: #071326;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.98rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(7, 19, 38, 0.18);
}

.auth-btn-link {
    display: block;
}

.auth-footer {
    margin-top: 22px;
    text-align: center;
}

.auth-footer a,
.auth-small-link {
    color: #071326;
    font-weight: 750;
    text-decoration: none;
}

.auth-footer a:hover,
.auth-small-link:hover {
    color: #d5ad28;
}

.auth-error {
    border: 1px solid rgba(180, 35, 24, 0.18);
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(180, 35, 24, 0.07);
    color: #b42318;
    font-size: 0.9rem;
    line-height: 1.5;
}

.field-error {
    color: #b42318;
    font-size: 0.82rem;
    line-height: 1.4;
}

.auth-info {
    border: 1px solid rgba(213, 173, 40, 0.24);
    border-radius: 16px;
    padding: 14px 15px;
    background: rgba(213, 173, 40, 0.09);
    color: rgba(7, 19, 38, 0.74);
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .auth-page {
        padding: 48px 16px;
    }

    .auth-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .auth-header h1 {
        font-size: 2rem;
    }
}