.auth-page {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.auth-shell {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 90px;
    text-align: center;
    gap: 12px;
}

.auth-hero {
    width: 100%;
    max-width: 900px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.auth-hero-content {
    max-width: 860px;
    margin: 0 auto;
}

.auth-title {

    margin: 0;

    text-align: center;

}

.auth-subtitle {

    max-width: 700px;

    margin: 16px auto 0;

    text-align: center;

}

.auth-card-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.auth-card {

    position: relative;

    overflow: hidden;

    width: 100%;

    max-width: 520px;

    padding: 32px;

}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center,
            rgba(96, 165, 250, .12),
            transparent 55%);
    pointer-events: none;
}

.auth-card-header {
    display: flex;
    gap: 16px;
    align-items: center;

    margin-bottom: 28px;
}



.auth-card h2 {

    margin-top: 16px;

}

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

.auth-form .ds-btn {
    margin-top: 4px;
}

.auth-security {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 20px;

    color: var(--re-muted);

    font-size: .86rem;

}

.auth-security span {

    width: 10px;

    height: 10px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 5px rgba(34, 197, 94, .12);

}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1199px) {
    .auth-shell {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .auth-hero {
        min-height: auto;
        padding-top: 24px;
        text-align: center;
        justify-content: center;
    }

    .auth-hero-content {
        margin: 0 auto;
    }


    .auth-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .auth-card-wrap {
        justify-content: center;
    }

    .auth-card {
        max-width: 520px;
    }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .auth-page {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .auth-shell {
        height: auto;
        min-height: 100vh;

        justify-content: center;

        padding: 24px 0;
    }

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

@media (max-width: 430px) {

    .auth-title {
        font-size: 2.15rem;
    }

    .auth-subtitle {
        font-size: .95rem;
    }

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