/* ==========================================================
   LigaBet Premium Registration Stylesheet
   PART 1

   Background:
   assets/images/stadium.jpg

   Logo:
   assets/images/logo.png
========================================================== */

:root {
    --bg-deep: #020814;
    --bg-panel: rgba(4, 13, 27, 0.88);
    --bg-card: rgba(7, 20, 38, 0.82);
    --bg-input: rgba(255, 255, 255, 0.055);

    --text: #ffffff;
    --text-soft: #b7c5d9;
    --muted: #8392aa;

    --blue: #1268ff;
    --blue-light: #00b7ff;

    --green: #56cf2d;
    --green-light: #94f04f;

    --danger: #ff6577;
    --warning: #ffae3f;

    --border: rgba(255, 255, 255, 0.11);
    --border-strong: rgba(255, 255, 255, 0.18);

    --radius-lg: 30px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --shadow-lg:
        0 30px 90px rgba(0, 0, 0, 0.58);

    --shadow-blue:
        0 18px 45px rgba(18, 104, 255, 0.28);

    --transition: 0.3s ease;
}

/* ==========================================================
   Reset
========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    overflow-x: hidden;

    position: relative;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            rgba(1, 7, 18, 0.72),
            rgba(1, 8, 20, 0.90)
        ),
        url("../images/stadium.jpg")
        center center / cover
        no-repeat fixed;
}

body::before {
    content: "";

    position: fixed;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(0, 183, 255, 0.18),
            transparent 34%
        ),

        radial-gradient(
            circle at 12% 82%,
            rgba(86, 207, 45, 0.12),
            transparent 30%
        ),

        linear-gradient(
            90deg,
            rgba(2, 8, 20, 0.55),
            transparent 45%,
            rgba(2, 8, 20, 0.58)
        );
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

/* ==========================================================
   Animated Background Effects
========================================================== */

.background-effects {
    position: fixed;

    inset: 0;

    z-index: 1;

    overflow: hidden;

    pointer-events: none;
}

/* Stadium floodlights */

.stadium-light {
    position: absolute;

    top: -520px;

    width: 560px;

    height: 980px;

    opacity: 0.62;

    filter: blur(34px);

    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.24),
            transparent 68%
        );
}

.light-one {
    left: 4%;

    transform: rotate(20deg);

    animation:
        lightOne
        8s
        ease-in-out
        infinite
        alternate;
}

.light-two {
    right: 3%;

    transform: rotate(-20deg);

    animation:
        lightTwo
        8s
        ease-in-out
        infinite
        alternate;
}

@keyframes lightOne {
    from {
        transform:
            translateX(-55px)
            rotate(16deg);

        opacity: 0.32;
    }

    to {
        transform:
            translateX(65px)
            rotate(27deg);

        opacity: 0.78;
    }
}

@keyframes lightTwo {
    from {
        transform:
            translateX(55px)
            rotate(-16deg);

        opacity: 0.32;
    }

    to {
        transform:
            translateX(-65px)
            rotate(-27deg);

        opacity: 0.78;
    }
}

/* Floating footballs */

.floating-ball {
    position: absolute;

    font-size: 64px;

    opacity: 0.09;

    filter:
        drop-shadow(
            0 12px 20px
            rgba(0, 0, 0, 0.40)
        );

    animation:
        floatBall
        7s
        ease-in-out
        infinite;
}

.ball-one {
    left: 8%;

    bottom: 11%;
}

.ball-two {
    top: 14%;

    right: 8%;

    animation-delay: 1.8s;
}

@keyframes floatBall {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-34px)
            rotate(24deg);
    }
}

/* Animated scanning light */

.scan-line {
    position: absolute;

    left: 0;

    right: 0;

    height: 1px;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 183, 255, 0.80),
            transparent
        );

    box-shadow:
        0 0 24px
        rgba(0, 183, 255, 0.75);

    animation:
        scanMove
        9s
        linear
        infinite;
}

@keyframes scanMove {
    0% {
        top: -5%;

        opacity: 0;
    }

    12% {
        opacity: 0.65;
    }

    88% {
        opacity: 0.35;
    }

    100% {
        top: 105%;

        opacity: 0;
    }
}

/* ==========================================================
   Main Registration Layout
========================================================== */

.auth-shell {
    position: relative;

    z-index: 2;

    width:
        min(
            1240px,
            calc(100% - 36px)
        );

    min-height:
        calc(100vh - 36px);

    margin:
        18px
        auto;

    display: grid;

    grid-template-columns:
        1.04fr
        0.96fr;

    overflow: hidden;

    border:
        1px
        solid
        rgba(255, 255, 255, 0.10);

    border-radius:
        var(--radius-lg);

    background:
        rgba(3, 10, 22, 0.44);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        var(--shadow-lg);
}
/* ==========================================================
   Left Branding Panel
========================================================== */

.brand-panel {
    position: relative;

    display: flex;

    align-items: center;

    padding: 58px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(3, 14, 31, 0.33),
            rgba(2, 8, 18, 0.80)
        ),

        radial-gradient(
            circle at 20% 15%,
            rgba(0, 183, 255, 0.13),
            transparent 38%
        );
}

.brand-panel::after {
    content: "";

    position: absolute;

    width: 340px;

    height: 340px;

    left: -140px;

    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(86, 207, 45, 0.13);

    filter:
        blur(45px);
}

.brand-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 570px;

    animation:
        brandEntrance
        0.85s
        ease
        both;
}

@keyframes brandEntrance {
    from {
        opacity: 0;

        transform:
            translateX(-36px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}

/* ==========================================================
   Brand Badge
========================================================== */

.brand-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        10px
        16px;

    border:
        1px
        solid
        rgba(148, 240, 79, 0.30);

    border-radius: 999px;

    background:
        rgba(86, 207, 45, 0.08);

    color:
        #dcffc8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.4px;
}

.live-dot {
    width: 9px;

    height: 9px;

    border-radius: 50%;

    background:
        var(--green-light);

    box-shadow:
        0 0 14px
        rgba(148, 240, 79, 0.90);

    animation:
        pulse
        1.6s
        infinite;
}

@keyframes pulse {
    0% {
        box-shadow:
            0 0 0 0
            rgba(148, 240, 79, 0.55);
    }

    100% {
        box-shadow:
            0 0 0 16px
            rgba(148, 240, 79, 0);
    }
}

/* ==========================================================
   LigaBet Logo
========================================================== */

.main-logo {
    display: block;

    width: 170px;

    max-height: 170px;

    object-fit: contain;

    margin:
        32px
        0
        26px;

    border-radius: 24px;

    filter:
        drop-shadow(
            0 20px 32px
            rgba(0, 0, 0, 0.50)
        );

    transition:
        transform
        var(--transition);
}

.main-logo:hover {
    transform:
        translateY(-4px)
        scale(1.035);
}

/* ==========================================================
   Brand Heading
========================================================== */

.brand-content h1 {
    max-width: 580px;

    margin-bottom: 22px;

    font-size:
        clamp(
            40px,
            5vw,
            58px
        );

    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -2.2px;
}

.brand-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--green-light),
            #ffffff 52%,
            var(--blue-light)
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color:
        transparent;
}

.brand-content > p {
    max-width: 545px;

    margin-bottom: 32px;

    color:
        var(--text-soft);

    font-size: 16px;

    line-height: 1.8;
}

/* ==========================================================
   Feature Cards
========================================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;

    margin-bottom: 22px;
}

.feature-grid article {
    min-height: 134px;

    padding: 18px;

    border:
        1px
        solid
        rgba(255, 255, 255, 0.09);

    border-radius: 18px;

    background:
        rgba(8, 24, 43, 0.70);

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, 0.18);

    transition:
        transform
        var(--transition),

        border-color
        var(--transition),

        box-shadow
        var(--transition);
}

.feature-grid article:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(86, 207, 45, 0.50);

    box-shadow:
        0 18px 36px
        rgba(0, 0, 0, 0.28);
}

.feature-grid strong {
    display: block;

    margin-bottom: 9px;

    color:
        var(--green-light);

    font-size: 25px;

    line-height: 1.1;

    font-weight: 800;
}

.feature-grid span {
    display: block;

    color:
        #b4c0d2;

    font-size: 12px;

    line-height: 1.55;
}

/* ==========================================================
   Live Prediction Ticker
========================================================== */

.ticker {
    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        16px
        18px;

    border:
        1px
        solid
        rgba(0, 183, 255, 0.22);

    border-radius: 17px;

    background:
        linear-gradient(
            90deg,
            rgba(18, 104, 255, 0.14),
            rgba(0, 183, 255, 0.055)
        );
}

.ticker > span {
    flex:
        0 0 auto;

    padding:
        7px
        10px;

    border-radius: 8px;

    background:
        #f03c51;

    color:
        #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.1px;

    animation:
        liveBlink
        1.35s
        infinite;
}

@keyframes liveBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.50;
    }
}

.ticker div {
    min-width: 0;
}

.ticker b {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;

    color:
        #ffffff;
}

.ticker small {
    display: block;

    color:
        #92a3bb;

    font-size: 11px;

    line-height: 1.5;
}
/* ==========================================================
   Right Registration Panel
========================================================== */

.form-panel {
    display: flex;

    align-items: center;

    justify-content: center;

    padding: 38px;

    background:
        linear-gradient(
            180deg,
            rgba(2, 10, 23, 0.78),
            rgba(2, 8, 18, 0.92)
        ),

        radial-gradient(
            circle at 80% 10%,
            rgba(18, 104, 255, 0.12),
            transparent 36%
        );
}

/* ==========================================================
   Registration Card
========================================================== */

.form-wrap {
    width: 100%;

    max-width: 510px;

    padding: 34px;

    border:
        1px
        solid
        rgba(255, 255, 255, 0.11);

    border-radius: 28px;

    background:
        rgba(6, 17, 33, 0.76);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

    box-shadow:
        0 24px 72px
        rgba(0, 0, 0, 0.40);

    animation:
        formEntrance
        0.75s
        ease
        both;
}

@keyframes formEntrance {
    from {
        opacity: 0;

        transform:
            translateY(30px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

/* ==========================================================
   Mobile Logo
========================================================== */

.mobile-logo {
    display: none;

    position: relative;

    justify-content: center;

    margin-bottom: 20px;
}

.mobile-logo::before {
    content: "";

    position: absolute;

    width: 155px;

    height: 155px;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 183, 255, 0.26),
            transparent 68%
        );

    filter:
        blur(18px);
}

.mobile-logo img {
    position: relative;

    z-index: 1;

    width: 108px;

    height: 108px;

    object-fit: contain;

    border-radius: 22px;

    filter:
        drop-shadow(
            0 14px 28px
            rgba(0, 0, 0, 0.50)
        );
}

/* ==========================================================
   Form Heading
========================================================== */

.form-header {
    margin-bottom: 27px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color:
        var(--green-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.6px;
}

.form-header h2 {
    margin-bottom: 9px;

    font-size:
        clamp(
            31px,
            4vw,
            40px
        );

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;
}

.form-header p {
    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.65;
}

/* ==========================================================
   Alert Messages
========================================================== */

.alert {
    margin-bottom: 18px;

    padding:
        14px
        16px;

    border-radius: 14px;

    font-size: 13px;

    line-height: 1.65;
}

.alert strong {
    display: block;

    margin-bottom: 4px;
}

.alert ul {
    padding-left: 18px;
}

.alert-error {
    border:
        1px
        solid
        rgba(255, 101, 119, 0.32);

    background:
        rgba(255, 101, 119, 0.09);

    color:
        #ffd3d9;
}

.alert-success {
    border:
        1px
        solid
        rgba(86, 207, 45, 0.32);

    background:
        rgba(86, 207, 45, 0.09);

    color:
        #ddffd0;
}

/* ==========================================================
   Form Fields
========================================================== */

.field {
    margin-bottom: 16px;
}

.field label {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 8px;

    color:
        #f7fbff;

    font-size: 13px;

    font-weight: 600;
}

.optional {
    color:
        var(--muted);

    font-size: 11px;

    font-weight: 500;
}

/* ==========================================================
   Two Column Layout
========================================================== */

.two-columns {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}

/* ==========================================================
   Input Shell
========================================================== */

.input-shell {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 56px;

    padding:
        0
        15px;

    overflow: hidden;

    border:
        1px
        solid
        var(--border);

    border-radius: 15px;

    background:
        var(--bg-input);

    transition:
        border-color
        var(--transition),

        box-shadow
        var(--transition),

        transform
        var(--transition),

        background
        var(--transition);
}

.input-shell::after {
    content: "";

    position: absolute;

    left: -100%;

    bottom: 0;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--green-light),
            var(--blue-light),
            transparent
        );

    transition:
        left
        0.45s
        ease;
}

.input-shell:hover {
    border-color:
        var(--border-strong);

    background:
        rgba(255, 255, 255, 0.07);
}

.input-shell:focus-within {
    transform:
        translateY(-2px);

    border-color:
        rgba(86, 207, 45, 0.76);

    box-shadow:
        0 0 0 4px
        rgba(86, 207, 45, 0.08),

        0 12px 28px
        rgba(0, 0, 0, 0.18);
}

.input-shell:focus-within::after {
    left: 0;
}

/* ==========================================================
   Field Icons
========================================================== */

.icon {
    width: 21px;

    flex:
        0 0 21px;

    margin-right: 11px;

    color:
        #6fc9ff;

    font-size: 16px;

    text-align: center;
}

/* ==========================================================
   Input and Select Elements
========================================================== */

.input-shell input,
.input-shell select {
    width: 100%;

    min-width: 0;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        #ffffff;

    font-size: 14px;
}

.input-shell input::placeholder {
    color:
        #718098;
}

.input-shell input[readonly] {
    cursor: default;

    color:
        #b9c6d8;
}

.input-shell select {
    cursor: pointer;
}

.input-shell select option {
    background:
        #071426;

    color:
        #ffffff;
}

/* ==========================================================
   Password Visibility Button
========================================================== */

.toggle-password {
    flex:
        0 0 auto;

    margin-left: 10px;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        #9cb0ca;

    cursor: pointer;

    font-size: 16px;

    transition:
        color
        var(--transition),

        transform
        var(--transition);
}

.toggle-password:hover {
    color:
        #ffffff;

    transform:
        scale(1.08);
}

/* ==========================================================
   Password Strength Meter
========================================================== */

.password-meter {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 5px;

    margin-top: 9px;
}

.password-meter span {
    height: 4px;

    border-radius: 999px;

    background:
        #27354a;

    transition:
        background
        var(--transition);
}

.password-meter.weak span:nth-child(1) {
    background:
        var(--danger);
}

.password-meter.medium span:nth-child(-n + 2) {
    background:
        var(--warning);
}

.password-meter.good span:nth-child(-n + 3) {
    background:
        #4fafff;
}

.password-meter.strong span {
    background:
        var(--green);
}

#passwordHint,
.password-match-message {
    min-height: 17px;

    margin-top: 7px;

    color:
        #8291a7;

    font-size: 11px;

    line-height: 1.45;
}

.password-match-message.match-success {
    color:
        #80ec5c;
}

.password-match-message.match-error {
    color:
        #ff8190;
}
/* ==========================================================
   Terms and Conditions
========================================================== */

.terms {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin:
        19px
        0;

    color:
        #95a5ba;

    font-size: 12px;

    line-height: 1.65;

    cursor: pointer;
}

.terms input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.checkmark {
    position: relative;

    width: 20px;

    height: 20px;

    flex:
        0 0 20px;

    margin-top: 1px;

    border:
        1px
        solid
        rgba(255, 255, 255, 0.22);

    border-radius: 6px;

    background:
        #081526;

    transition:
        background
        var(--transition),

        border-color
        var(--transition),

        box-shadow
        var(--transition);
}

.terms input:checked + .checkmark {
    border-color:
        var(--green);

    background:
        var(--green);

    box-shadow:
        0 0 18px
        rgba(86, 207, 45, 0.35);
}

.terms input:checked + .checkmark::after {
    content: "✓";

    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    color:
        #06110a;

    font-size: 13px;

    font-weight: 900;
}

.terms a {
    color:
        #69d2ff;

    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* ==========================================================
   Submit Button
========================================================== */

.submit-btn {
    position: relative;

    width: 100%;

    min-height: 59px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0
        20px;

    overflow: hidden;

    border: 0;

    border-radius: 17px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--blue-light) 52%,
            var(--green)
        );

    color:
        #ffffff;

    box-shadow:
        var(--shadow-blue);

    cursor: pointer;

    font-size: 15px;

    font-weight: 800;

    transition:
        transform
        var(--transition),

        box-shadow
        var(--transition),

        opacity
        var(--transition);
}

.submit-btn::before {
    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 100%;

    transform:
        skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            transparent
        );

    transition:
        left
        0.6s
        ease;
}

.submit-btn:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 24px 48px
        rgba(18, 104, 255, 0.40);
}

.submit-btn:hover::before {
    left: 140%;
}

.submit-btn b {
    position: relative;

    z-index: 1;

    width: 37px;

    height: 37px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.16);

    font-size: 17px;
}

.submit-btn span {
    position: relative;

    z-index: 1;
}

.submit-btn:disabled {
    cursor: not-allowed;

    opacity: 0.67;

    transform: none;
}

/* ==========================================================
   Registration Bonus Card
========================================================== */

.bonus-card {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 17px;

    padding: 14px;

    border:
        1px
        solid
        rgba(86, 207, 45, 0.22);

    border-radius: 15px;

    background:
        rgba(86, 207, 45, 0.075);

    transition:
        transform
        var(--transition),

        box-shadow
        var(--transition);
}

.bonus-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 32px
        rgba(86, 207, 45, 0.09);
}

.bonus-icon {
    width: 42px;

    height: 42px;

    flex:
        0 0 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--green-light);

    color:
        #07120b;

    font-size: 17px;

    box-shadow:
        0 8px 22px
        rgba(86, 207, 45, 0.24);
}

.bonus-card strong {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;
}

.bonus-card small {
    display: block;

    color:
        #99aa9f;

    font-size: 11px;

    line-height: 1.45;
}

/* ==========================================================
   Login Link
========================================================== */

.login-link {
    margin-top: 21px;

    color:
        var(--muted);

    font-size: 13px;

    text-align: center;
}

.login-link a {
    color:
        #68d5ff;

    font-weight: 700;

    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* ==========================================================
   Security Information
========================================================== */

.security-row {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 23px;

    padding-top: 17px;

    border-top:
        1px
        solid
        rgba(255, 255, 255, 0.07);

    color:
        #718199;

    font-size: 10px;
}

.security-row span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}

/* ==========================================================
   Tablet Layout
========================================================== */

@media (max-width: 1120px) {
    .auth-shell {
        grid-template-columns:
            0.92fr
            1.08fr;
    }

    .brand-panel {
        padding: 42px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid article {
        min-height: auto;

        padding:
            14px
            16px;
    }

    .form-panel {
        padding: 30px;
    }
}

/* ==========================================================
   Mobile and Small Tablet Layout
========================================================== */

@media (max-width: 900px) {
    body {
        background:
            linear-gradient(
                rgba(1, 7, 18, 0.74),
                rgba(1, 8, 20, 0.92)
            ),

            url("../images/stadium.jpg")
            center center / cover
            no-repeat fixed;
    }

    .auth-shell {
        width:
            min(
                660px,
                calc(100% - 24px)
            );

        min-height:
            calc(100vh - 24px);

        margin:
            12px
            auto;

        display: block;

        border-radius: 26px;
    }

    .brand-panel {
        display: none;
    }

    .form-panel {
        min-height:
            calc(100vh - 24px);

        padding: 25px;

        background:
            rgba(2, 9, 20, 0.60);
    }

    .form-wrap {
        max-width: 540px;
    }

    .mobile-logo {
        display: flex;
    }

    .form-header {
        text-align: center;
    }
}

/* ==========================================================
   Phone Layout
========================================================== */

@media (max-width: 580px) {
    .auth-shell {
        width: 100%;

        min-height: 100vh;

        margin: 0;

        border: 0;

        border-radius: 0;
    }

    .form-panel {
        min-height: 100vh;

        padding:
            20px
            14px
            28px;
    }

    .form-wrap {
        padding:
            24px
            17px;

        border-radius: 22px;
    }

    .mobile-logo img {
        width: 94px;

        height: 94px;
    }

    .form-header h2 {
        font-size: 29px;
    }

    .two-columns {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .input-shell {
        min-height: 54px;
    }

    .security-row {
        gap: 9px;

        font-size: 9px;
    }
}

/* ==========================================================
   Very Small Phones
========================================================== */

@media (max-width: 380px) {
    .form-wrap {
        padding:
            22px
            14px;
    }

    .form-header h2 {
        font-size: 26px;
    }

    .submit-btn {
        padding:
            0
            16px;

        font-size: 13px;
    }

    .terms {
        font-size: 11px;
    }
}

/* ==========================================================
   Custom Scrollbar
========================================================== */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background:
        #04101f;
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;

    background:
        linear-gradient(
            var(--blue),
            var(--green)
        );
}

/* ==========================================================
   Accessibility: Reduced Motion
========================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior:
            auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}