/* =========================================================
   OUTSIDE.WTF AUTH
========================================================= */

.auth-page {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 140px 24px 80px;

    position: relative;

    z-index: 5;
}


.auth-card {

    width: min(520px, 100%);

    padding: 42px;

    background:
        rgba(8, 8, 8, 0.78);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.65);

    position: relative;

    overflow: hidden;
}


.auth-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d8ff00,
            transparent
        );

    opacity: .8;
}


.auth-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -100px;

    background:
        rgba(216, 255, 0, 0.08);

    filter:
        blur(60px);

    pointer-events: none;
}


.auth-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 55px;
}


.auth-number {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    color: rgba(255,255,255,.35);
}


.auth-status {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,.55);
}


.auth-status i {

    width: 6px;
    height: 6px;

    display: block;

    border-radius: 50%;

    background: #d8ff00;

    box-shadow:
        0 0 12px
        rgba(216,255,0,.8);
}


.auth-heading {

    margin-bottom: 40px;
}


.auth-kicker {

    margin: 0 0 12px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 4px;

    color: #d8ff00;
}


.auth-heading h1 {

    margin: 0;

    font-size: clamp(54px, 10vw, 82px);

    line-height: .82;

    letter-spacing: -5px;

    font-weight: 950;

    text-transform: uppercase;

    color: #fff;
}


.auth-heading h1 span {

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.8);

    text-shadow:
        0 0 35px
        rgba(216,255,0,.12);
}


.auth-description {

    max-width: 440px;

    margin:
        26px 0 0;

    color:
        rgba(255,255,255,.48);

    font-size: 14px;

    line-height: 1.7;
}


.auth-description strong {

    color:
        rgba(255,255,255,.85);

    font-weight: 600;
}


.auth-form {

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.input-group {

    display: flex;

    flex-direction: column;

    gap: 9px;
}


.input-group label {

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.5px;

    color:
        rgba(255,255,255,.42);
}


.input-group input {

    width: 100%;

    box-sizing: border-box;

    padding:
        16px 17px;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid
        rgba(255,255,255,.11);

    outline: none;

    color: #fff;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color .2s,
        background .2s,
        box-shadow .2s;
}


.input-group input::placeholder {

    color:
        rgba(255,255,255,.22);
}


.input-group input:focus {

    background:
        rgba(255,255,255,.055);

    border-color:
        rgba(216,255,0,.65);

    box-shadow:
        0 0 0 3px
        rgba(216,255,0,.07);
}


.terms {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    cursor: pointer;

    color:
        rgba(255,255,255,.42);

    font-size: 11px;

    line-height: 1.5;
}


.terms input {

    appearance: none;

    width: 16px;
    height: 16px;

    flex: 0 0 16px;

    margin: 0;

    border:
        1px solid
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.03);

    cursor: pointer;

    position: relative;
}


.terms input:checked {

    background:
        #d8ff00;

    border-color:
        #d8ff00;
}


.terms input:checked::after {

    content: "✓";

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #050505;

    font-size: 11px;

    font-weight: 900;
}


.auth-button {

    width: 100%;

    min-height: 58px;

    margin-top: 8px;

    border: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 19px;

    background:
        #d8ff00;

    color:
        #050505;

    font-family: inherit;

    font-size: 11px;

    font-weight: 950;

    letter-spacing: 2px;

    transition:
        transform .2s,
        box-shadow .2s,
        opacity .2s;
}


.auth-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 35px
        rgba(216,255,0,.18);
}


.auth-button:active {

    transform:
        translateY(0);
}


.auth-button:disabled {

    opacity: .5;

    cursor: wait;

    transform: none;

    box-shadow: none;
}


.auth-button strong {

    font-size: 20px;

    font-weight: 400;
}


.auth-error {

    min-height: 17px;

    color:
        #ff5f5f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1.5;

}


.auth-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color:
        rgba(255,255,255,.3);
}


.auth-footer a {

    color:
        #d8ff00;

    text-decoration: none;

    transition:
        opacity .2s;
}


.auth-footer a:hover {

    opacity: .65;
}


.auth-footer a.disabled {

    opacity: .35;

    pointer-events: none;
}


@media (max-width: 600px) {

    .auth-page {

        padding:
            120px 15px 50px;
    }


    .auth-card {

        padding: 28px 22px;
    }


    .auth-top {

        margin-bottom: 40px;
    }


    .auth-heading h1 {

        font-size: 58px;

        letter-spacing: -4px;
    }


    .auth-footer {

        flex-direction: column;

        align-items: flex-start;
    }
}