/* =====================================================
   GIO WORLDS
   LOGIN PAGE
===================================================== */

.gw-login-body {
    margin: 0;
    padding: 0;

    background: #040604;

    color: #eef3ea;

    overflow-x: hidden;
}


/* =========================
   PAGE
========================= */

.gw-login-page {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(151,255,0,0.045),
            transparent 30%
        ),
        #040604;
}


/* Grid */

.gw-login-bg-grid {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(151,255,0,0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(151,255,0,0.022) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.55;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 90%
        );
}


/* Glow */

.gw-login-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}

.gw-login-glow-1 {
    left: -280px;
    top: 15%;

    background: rgba(151,255,0,0.045);
}

.gw-login-glow-2 {
    right: -220px;
    bottom: -220px;

    background: rgba(151,255,0,0.055);
}


/* =========================
   LEFT
========================= */

.gw-login-left {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 100vh;

    padding: 50px 35px;
}

.gw-login-wrapper {
    width: 100%;
    max-width: 470px;
}


/* =========================
   LOGO
========================= */

.gw-login-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #edf2e9 !important;

    text-decoration: none;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 48px;
}

.gw-login-logo-mark {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(151,255,0,0.38);
    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            rgba(151,255,0,0.10),
            rgba(151,255,0,0.02)
        );

    color: var(--gw-green, #9bff00);

    font-size: 19px;

    box-shadow:
        0 0 30px rgba(151,255,0,0.045);
}

.gw-login-logo-text small {
    display: block;

    margin-top: -2px;

    color: rgba(235,240,232,0.34);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================
   HEADING
========================= */

.gw-login-heading {
    margin-bottom: 30px;
}

.gw-login-mini-label {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

    color: rgba(151,255,0,0.62);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.gw-login-mini-label span {
    width: 24px;
    height: 1px;

    background: var(--gw-green, #9bff00);
}

.gw-login-heading h1 {
    margin: 0;

    color: #f1f5ed;

    font-size: clamp(39px, 5vw, 55px);

    line-height: 1.04;

    font-weight: 600;

    letter-spacing: -1.5px;
}

.gw-login-heading h1 strong {
    color: var(--gw-green, #9bff00);

    font-weight: 600;
}

.gw-login-heading p {
    max-width: 420px;

    margin: 17px 0 0;

    color: rgba(235,240,232,0.48);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================
   LOGIN CARD
========================= */

.gw-login-card {
    position: relative;

    padding: 28px;

    border: 1px solid rgba(151,255,0,0.10);

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.042),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,0.30),
        inset 0 1px 0 rgba(255,255,255,0.025);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.gw-login-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 14%;
    right: 14%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(151,255,0,0.55),
            transparent
        );
}


/* =========================
   FORM
========================= */

.gw-login-field {
    margin-bottom: 20px;
}

.gw-login-field label,
.gw-password-label label {
    display: block;

    margin-bottom: 8px;

    color: rgba(235,240,232,0.62);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.3px;
}


/* Password Label */

.gw-password-label {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.gw-password-label a {
    color: rgba(151,255,0,0.58);

    font-size: 9px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.gw-password-label a:hover {
    color: var(--gw-green, #9bff00);
}


/* Input */

.gw-input-wrapper {
    position: relative;

    display: flex;

    align-items: center;
}

.gw-input-wrapper > i {
    position: absolute;

    left: 14px;

    z-index: 2;

    color: rgba(151,255,0,0.42);

    font-size: 14px;

    pointer-events: none;
}

.gw-input-wrapper input {
    width: 100%;

    height: 49px;

    padding: 0 43px;

    border: 1px solid rgba(255,255,255,0.075);

    border-radius: 10px;

    outline: none;

    background: rgba(0,0,0,0.20);

    color: #edf2e9;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.gw-input-wrapper input::placeholder {
    color: rgba(235,240,232,0.24);
}

.gw-input-wrapper input:focus {
    border-color: rgba(151,255,0,0.32);

    background: rgba(151,255,0,0.018);

    box-shadow:
        0 0 0 3px rgba(151,255,0,0.035);
}


/* Password Toggle */

.gw-password-toggle {
    position: absolute;

    right: 7px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 7px;

    background: transparent;

    color: rgba(235,240,232,0.32);

    cursor: pointer;

    transition: 0.2s ease;
}

.gw-password-toggle:hover {
    color: var(--gw-green, #9bff00);

    background: rgba(151,255,0,0.045);
}


/* Error */

.gw-field-error {
    display: block;

    min-height: 13px;

    margin-top: 5px;

    color: #ff7b7b;

    font-size: 8px;
}


/* =========================
   REMEMBER
========================= */

.gw-login-options {
    margin: -1px 0 20px;
}

.gw-remember {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(235,240,232,0.38);

    font-size: 10px;

    cursor: pointer;
}

.gw-remember input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.gw-custom-check {
    width: 15px;
    height: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 4px;

    background: rgba(255,255,255,0.015);

    transition: 0.2s ease;
}

.gw-custom-check i {
    display: none;

    color: #071004;

    font-size: 10px;

    font-weight: 800;
}

.gw-remember input:checked + .gw-custom-check {
    border-color: var(--gw-green, #9bff00);

    background: var(--gw-green, #9bff00);
}

.gw-remember input:checked + .gw-custom-check i {
    display: block;
}


/* =========================
   LOGIN BUTTON
========================= */

.gw-login-button {
    position: relative;

    width: 100%;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid rgba(151,255,0,0.35);

    border-radius: 10px;

    background: var(--gw-green, #9bff00);

    color: #071004;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

.gw-login-button:hover {
    background: #b2ff42;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(151,255,0,0.12);
}

.gw-login-button i {
    font-size: 14px;

    transition: transform 0.2s ease;
}

.gw-login-button:hover i {
    transform: translateX(3px);
}


/* Loading */

.gw-login-button.loading {
    pointer-events: none;

    opacity: 0.75;
}

.gw-login-button.loading .gw-login-button-text {
    opacity: 0;
}

.gw-login-button.loading::after {
    content: "";

    position: absolute;

    width: 16px;
    height: 16px;

    border: 2px solid rgba(7,16,4,0.25);

    border-top-color: #071004;

    border-radius: 50%;

    animation: gwLoginSpin 0.7s linear infinite;
}

@keyframes gwLoginSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================
   DIVIDER
========================= */

.gw-login-divider {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 22px 0;
}

.gw-login-divider::before,
.gw-login-divider::after {
    content: "";

    height: 1px;

    flex: 1;

    background: rgba(255,255,255,0.055);
}

.gw-login-divider span {
    padding: 0 12px;

    color: rgba(235,240,232,0.22);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* Register */

.gw-register-text {
    text-align: center;

    color: rgba(235,240,232,0.34);

    font-size: 12px;
}

.gw-register-text a {
    margin-left: 4px;

    color: var(--gw-green, #9bff00);

    text-decoration: none;

    font-weight: 600;
}

.gw-register-text a i {
    margin-left: 2px;

    font-size: 11px;
}


/* =========================
   SECURITY
========================= */

.gw-login-security {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 20px;

    color: rgba(235,240,232,0.24);

    font-size: 8px;

    text-align: center;
}

.gw-login-security i {
    color: rgba(151,255,0,0.42);

    font-size: 11px;
}


/* Back */

.gw-back-website {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 22px;

    color: rgba(235,240,232,0.30);

    font-size: 11px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.gw-back-website:hover {
    color: var(--gw-green, #9bff00);
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.gw-login-right {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 50px;
}

.gw-login-right::before {
    content: "";

    position: absolute;

    left: 0;
    top: 10%;
    bottom: 10%;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(151,255,0,0.12),
            transparent
        );
}


/* Visual */

.gw-login-visual {
    position: relative;

    width: 100%;
    max-width: 620px;

    min-height: 700px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}


/* Top */

.gw-visual-top {
    position: absolute;

    top: 20px;
    left: 0;
    right: 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: rgba(235,240,232,0.25);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.gw-visual-status {
    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(151,255,0,0.48);

    font-size: 7px;
}

.gw-visual-status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gw-green, #9bff00);

    box-shadow:
        0 0 9px rgba(151,255,0,0.8);
}


/* =========================
   ORB
========================= */

.gw-login-orb {
    position: relative;

    width: 360px;
    height: 360px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;
}


/* Rings */

.gw-orb-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(151,255,0,0.09);
}

.gw-orb-ring-1 {
    width: 355px;
    height: 355px;

    border-right-color: rgba(151,255,0,0.38);

    animation:
        gwLoginOrbit 18s linear infinite;
}

.gw-orb-ring-2 {
    width: 275px;
    height: 275px;

    border-left-color: rgba(151,255,0,0.32);

    animation:
        gwLoginOrbitReverse 12s linear infinite;
}

.gw-orb-ring-3 {
    width: 200px;
    height: 200px;

    border-top-color: rgba(151,255,0,0.25);

    animation:
        gwLoginOrbit 8s linear infinite;
}


/* Core */

.gw-orb-core {
    position: relative;

    z-index: 5;

    width: 140px;
    height: 140px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(151,255,0,0.32);

    background:
        radial-gradient(
            circle,
            rgba(151,255,0,0.13),
            #080d07 67%
        );

    box-shadow:
        0 0 60px rgba(151,255,0,0.08),
        inset 0 0 35px rgba(151,255,0,0.045);
}

.gw-orb-symbol {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 7px;

    border: 1px solid rgba(151,255,0,0.25);

    border-radius: 10px;

    color: var(--gw-green, #9bff00);

    font-size: 20px;

    font-weight: 700;
}

.gw-orb-core strong {
    color: #eef3ea;

    font-size: 15px;

    letter-spacing: 2px;
}

.gw-orb-core > span {
    margin-top: 3px;

    color: rgba(235,240,232,0.33);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2.7px;
}


/* Orbit icons */

.gw-orbit-icon {
    position: absolute;

    z-index: 7;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(151,255,0,0.17);

    border-radius: 50%;

    background: #080d07;

    color: var(--gw-green, #9bff00);

    font-size: 11px;

    box-shadow:
        0 0 22px rgba(151,255,0,0.055);
}

.gw-orbit-icon-1 {
    top: 32px;
    left: 76px;
}

.gw-orbit-icon-2 {
    top: 72px;
    right: 31px;
}

.gw-orbit-icon-3 {
    right: 70px;
    bottom: 34px;
}

.gw-orbit-icon-4 {
    bottom: 73px;
    left: 30px;
}


/* Animations */

@keyframes gwLoginOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes gwLoginOrbitReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================
   VISUAL HEADING
========================= */

.gw-visual-heading {
    position: relative;

    max-width: 500px;

    text-align: center;
}

.gw-visual-heading > span {
    color: rgba(151,255,0,0.5);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2.3px;
}

.gw-visual-heading h2 {
    margin: 12px 0 10px;

    color: #eaf0e7;

    font-size: 31px;

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.7px;
}

.gw-visual-heading h2 strong {
    color: var(--gw-green, #9bff00);

    font-weight: 600;
}

.gw-visual-heading p {
    max-width: 430px;

    margin: auto;

    color: rgba(235,240,232,0.35);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================
   VISUAL STATS
========================= */

.gw-visual-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    width: 100%;

    max-width: 530px;

    margin-top: 35px;

    padding: 17px 0;

    border-top: 1px solid rgba(255,255,255,0.045);

    border-bottom: 1px solid rgba(255,255,255,0.045);
}

.gw-visual-stats > div {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    border-right: 1px solid rgba(255,255,255,0.045);
}

.gw-visual-stats > div:last-child {
    border-right: 0;
}

.gw-visual-stats i {
    color: rgba(151,255,0,0.52);

    font-size: 12px;
}

.gw-visual-stats span {
    color: rgba(235,240,232,0.27);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.7px;
}


/* =========================
   CODE DECORATION
========================= */

.gw-visual-code {
    position: absolute;

    bottom: 22px;
    left: 0;
    right: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: rgba(235,240,232,0.15);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.4px;
}

.gw-visual-code i {
    width: 35px;
    height: 1px;

    background: rgba(151,255,0,0.18);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .gw-login-right {
        padding: 35px;
    }

    .gw-login-orb {
        transform: scale(0.9);
        margin-bottom: 10px;
    }

    .gw-login-visual {
        min-height: 650px;
    }

}


@media (max-width: 991px) {

    .gw-login-page {
        background:
            radial-gradient(
                circle at 50% 35%,
                rgba(151,255,0,0.045),
                transparent 35%
            ),
            #040604;
    }

    .gw-login-left {
        min-height: auto;

        padding:
            45px
            25px
            70px;
    }

    .gw-login-wrapper {
        max-width: 500px;
    }

    .gw-login-right {
        min-height: 650px;

        padding:
            20px
            25px
            70px;
    }

    .gw-login-right::before {
        display: none;
    }

    .gw-login-logo {
        margin-bottom: 38px;
    }

    .gw-login-visual {
        min-height: 600px;
    }

    .gw-visual-top {
        top: 0;
    }

}


@media (max-width: 767px) {

    .gw-login-left {
        padding:
            35px
            18px
            55px;
    }

    .gw-login-logo {
        margin-bottom: 35px;
    }

    .gw-login-heading h1 {
        font-size: 40px;
    }

    .gw-login-heading p {
        font-size: 14px;
    }

    .gw-login-card {
        padding: 21px 18px;

        border-radius: 18px;
    }

    .gw-login-right {
        min-height: 540px;

        padding:
            10px
            18px
            50px;
    }

    .gw-login-visual {
        min-height: 510px;
    }

    .gw-login-orb {
        width: 290px;
        height: 290px;

        transform: scale(0.88);

        margin-bottom: -5px;
    }

    .gw-orb-ring-1 {
        width: 290px;
        height: 290px;
    }

    .gw-orb-ring-2 {
        width: 225px;
        height: 225px;
    }

    .gw-orb-ring-3 {
        width: 165px;
        height: 165px;
    }

    .gw-visual-heading h2 {
        font-size: 26px;
    }

    .gw-visual-stats {
        margin-top: 25px;
    }

    .gw-visual-stats span {
        font-size: 6px;
    }

}


@media (max-width: 480px) {

    .gw-login-left {
        padding:
            28px
            14px
            50px;
    }

    .gw-login-logo {
        margin-bottom: 30px;
    }

    .gw-login-logo-mark {
        width: 39px;
        height: 39px;
    }

    .gw-login-logo {
        font-size: 20px;
    }

    .gw-login-heading h1 {
        font-size: 35px;
    }

    .gw-login-heading {
        margin-bottom: 23px;
    }

    .gw-login-card {
        padding: 19px 15px;
    }

    .gw-input-wrapper input {
        height: 47px;

        font-size: 13px;
    }

    .gw-login-button {
        height: 48px;
    }

    .gw-login-right {
        min-height: 475px;

        padding:
            0
            12px
            40px;
    }

    .gw-login-visual {
        min-height: 450px;
    }

    .gw-visual-top {
        padding: 0 5px;
    }

    .gw-login-orb {
        width: 240px;
        height: 240px;

        transform: scale(0.78);

        margin-bottom: -22px;
    }

    .gw-orb-ring-1 {
        width: 240px;
        height: 240px;
    }

    .gw-orb-ring-2 {
        width: 185px;
        height: 185px;
    }

    .gw-orb-ring-3 {
        width: 135px;
        height: 135px;
    }

    .gw-orb-core {
        width: 112px;
        height: 112px;
    }

    .gw-orb-symbol {
        width: 32px;
        height: 32px;

        font-size: 16px;
    }

    .gw-orb-core strong {
        font-size: 12px;
    }

    .gw-visual-heading h2 {
        font-size: 22px;
    }

    .gw-visual-heading p {
        font-size: 9px;
    }

    .gw-visual-stats {
        margin-top: 20px;

        padding: 13px 0;
    }

    .gw-visual-stats i {
        font-size: 10px;
    }

    .gw-visual-stats span {
        display: none;
    }

    .gw-visual-code {
        display: none;
    }

}