/* =======================================================
   🎬 LOGIN PAGE
======================================================= */

body.login-page {
    overflow-x: hidden;
    background-color: #000;
}


/* =======================================================
   🎬 LOGIN SECTION
======================================================= */

.login {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: env(safe-area-inset-top)
        16px
        env(safe-area-inset-bottom);
    background-image: url("/static/images/login-bg-001.e5e00b5d555a.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =======================================================
   🌑 CINEMATIC OVERLAY
======================================================= */

.login__overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            415.35% 101.81% at 50% 1.35%,
            rgba(0, 0, 0, 0.81) 0%,
            #000000 32.28%,
            rgba(0, 0, 0, 0.87) 78.31%,
            rgba(0, 0, 0, 0.65) 100%
        );

    pointer-events: none;
}
/* =======================================================
   📦 CONTAINER
======================================================= */

.login__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 600px;

    display: flex;
    flex-direction: column;

    padding-top: 64px;
}


/* =======================================================
   🎬 BRAND
======================================================= */

.login__brand {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}


/* =======================================================
   🎨 LOGO
======================================================= */

.login__logo {
    width: 200px;
    max-width: 100%;
    display: block;
}


/* =======================================================
   🧠 HEADER
======================================================= */

.login__header {
    margin-bottom: 40px;
}


/* =======================================================
   🏷 TITLE
======================================================= */

.login__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    color: #f9f9f9;
    margin-bottom: 12px;
    text-align: center;
}


/* =======================================================
   📝 SUBTITLE
======================================================= */

.login__subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #A7ACB3;
    text-align: center;
}


/* =======================================================
   📝 FORM
======================================================= */

.auth__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* =======================================================
   🚨 ALERT
======================================================= */

.auth__alert {
    padding: 16px 18px;

    border-radius: 18px;

    background: rgba(255, 59, 92, 0.10);

    border: 1px solid rgba(255, 59, 92, 0.20);

    color: #ff6b81;

    font-size: 1.4rem;
    line-height: 1.5;
}


/* =======================================================
   🔗 FORGOT
======================================================= */

.login__forgot {
    margin-top: 26px;

    display: flex;
    justify-content: center;
}


/* =======================================================
   🔗 FORGOT LINK
======================================================= */

.login__forgot a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.login__forgot a:hover {
    color: #fff;
}


/* =======================================================
   ➖ DIVIDER
======================================================= */

.login__divider {
    display: flex;
    align-items: center;
    gap: 14px;

    margin:
        42px 0
        28px;
}


/* =======================================================
   ➖ LINE
======================================================= */

.login__divider span {
    flex: 1;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent
        );
}


/* =======================================================
   🏷 DIVIDER TEXT
======================================================= */

.login__divider p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
}


/* =======================================================
   🔘 OUTLINE BUTTON
======================================================= */

.auth__button--outline {
    background: transparent;
    border: 1px solid rgba(255, 106, 0, 0.55);
    color: #ff6a00;
    text-decoration: none;
}

.auth__button--outline:hover {
    background: rgba(255, 106, 0, 0.08);
}


