﻿
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: radial-gradient(circle at 10% 10%, rgba(13, 110, 253, .12), transparent 28%), radial-gradient(circle at 90% 90%, rgba(77, 163, 255, .10), transparent 30%), #f4f8ff;
    color: #18324a;
}


/* =====================================================
           MAIN PAGE
        ===================================================== */

.registration-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}


/* =====================================================
           MAIN CARD
        ===================================================== */

.registration-card {
    position: relative;
    width: 100%;
    max-width: 1160px;
    min-height: 900px;
    display: grid;
    grid-template-columns: 57% 43%;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    border: 2px solid rgba(255,255,255,.90);
    box-shadow: 0 40px 90px rgba(0,0,0,.38), 0 15px 35px rgba(37,99,235,.15), inset 0 1px 0 rgba(255,255,255,.9);
}


/* =====================================================
           CLOSE BUTTON
        ===================================================== */

.registration-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 100;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.97);
    color: #111827;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,.12), inset 0 1px 0 #fff;
    transition: all .25s ease;
}

    .registration-close:hover {
        color: #1d6112;
        transform: rotate(90deg) scale(1.05);
        box-shadow: 0 12px 28px rgba(37,99,235,.20);
    }


/* =====================================================
           LEFT SIDE
        ===================================================== */

.registration-left {
    position: relative;
    z-index: 5;
    padding: 20px 40px 30px;
    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 65%, #f4f8ff 100% );
}


/* =====================================================
           HEADING
        ===================================================== */

.registration-heading {
    text-align: center;
    margin-bottom: 10px;
}

    .registration-heading h1 {
        margin: 0;
        color: #101828;
        font-size: 30px;
        font-size: 30px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -1.2px;
    }

        .registration-heading h1 span {
            color: #1d6112;
        }

.heading-decoration {
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 11px auto;
}

    .heading-decoration span {
        width: 92px;
        height: 5px;
        display: block;
        border-radius: 10px;
        background: linear-gradient(90deg, #0bc231, #269e13);
        box-shadow: 0 3px 9px rgb(24 141 49 / 25%);
    }

    .heading-decoration b {
        width: 7px;
        height: 7px;
        display: block;
        border-radius: 50%;
        background: #1d6112;
    }

.registration-heading p {
    margin: 0;
    color: #536486;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}


/* =====================================================
           FORM
        ===================================================== */

.registration-field {
    margin-bottom: 10px;
}

    .registration-field label {
        display: block;
        margin-bottom: 7px;
        color: #111827;
        font-size: 16px;
        font-weight: 700;
    }

        .registration-field label .required {
            color: #ef4444;
        }

        .registration-field label .optional {
            color: #374151;
            font-size: 13px;
            font-weight: 500;
        }


/* =====================================================
           INPUT BOX
        ===================================================== */

.registration-input {
    position: relative;
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1.5px solid #c9d9f3;
    border-radius: 11px;
    background: linear-gradient( 180deg, #ffffff, #f9fbff );
    box-shadow: 0 5px 15px rgba(37,99,235,.06), inset 0 1px 2px rgba(255,255,255,.9);
    transition: .25s ease;
}

    .registration-input:focus-within {
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(37,99,235,.08), 0 8px 22px rgba(37,99,235,.10);
        transform: translateY(-1px);
    }


/* =====================================================
           INPUT ICON
        ===================================================== */

.registration-input-icon {
    width: 60px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d6112;
    font-size: 20px;
    background: linear-gradient( 145deg, #edf5ff, #e4efff );
    border-right: 1px solid #dbe7fa;
}


.registration-input input {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #172033;
    font-size: 14px;
    font-family: inherit;
}

    .registration-input input::placeholder {
        color: #7381a0;
        opacity: 1;
    }


/* =====================================================
           MOBILE INPUT
        ===================================================== */

.mobile-input {
    position: relative;
    width: 100%;
    height: 61px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1.5px solid #c9d9f3;
    border-radius: 11px;
    background: linear-gradient( 180deg, #ffffff, #f9fbff );
    box-shadow: 0 5px 15px rgba(37,99,235,.06);
    transition: .25s ease;
}

    .mobile-input:focus-within {
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(37,99,235,.08), 0 8px 22px rgba(37,99,235,.10);
    }

.mobile-country {
    height: 100%;
    min-width: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #172033;
    font-size: 16px;
    font-weight: 600;
    border-right: 1px solid #d5e0f1;
}

    .mobile-country i {
        font-size: 10px;
        color: #64748b;
    }

.mobile-input input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 16px;
    background: transparent;
    color: #172033;
    font-size: 16px;
}

    .mobile-input input::placeholder {
        color: #7381a0;
    }


/* =====================================================
           PASSWORD
        ===================================================== */

.password-input input {
    padding-right: 55px;
}

.password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 17px;
    cursor: pointer;
}

    .password-toggle:hover {
        color: #1d6112;
    }


/* =====================================================
           TERMS
        ===================================================== */

.terms-container {
    margin-top: 5px;
    margin-bottom: 19px;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

    .terms-label input {
        display: none;
    }

.terms-checkbox {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 5px;
    background: #1d6112;
    color: #fff;
    font-size: 11px;
    box-shadow: 0 4px 9px rgba(37,99,235,.25);
}

.terms-label input:not(:checked) + .terms-checkbox {
    background: #fff;
    border: 1.5px solid #b9c9e2;
    box-shadow: none;
}

    .terms-label input:not(:checked) + .terms-checkbox i {
        display: none;
    }

.terms-text {
    color: #52617d;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

    .terms-text a {
        color: #1d6112;
        font-weight: 700;
        text-decoration: none;
    }

        .terms-text a:hover {
            text-decoration: underline;
        }


/* =====================================================
           CREATE ACCOUNT BUTTON
        ===================================================== */

.create-account-btn {
    position: relative;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, #1d6112, #179436);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 25px rgb(24 139 47 / 18%), inset 0 1px 1px rgba(255, 255, 255, .4), inset 0 -5px 10px rgba(0, 0, 0, .08);
    transition: .2s ease;
}

    .create-account-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
        transform: skewX(-20deg);
        animation: buttonShine 3s infinite;
    }

    .create-account-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(255, 255, 255,.42), inset 0 1px 1px rgba(255,255,255,.4);
    }

    .create-account-btn:active {
        transform: translateY(1px) scale(.99);
    }

    .create-account-btn:disabled {
        cursor: not-allowed;
        opacity: .7;
        transform: none;
    }

.create-account-icon {
    font-size: 22px;
}


/* =====================================================
           LOGIN
        ===================================================== */

.login-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.login-line {
    flex: 1;
    height: 1px;
    background: #d9e2f0;
}

.login-text {
    margin: 0;
    white-space: nowrap;
    color: #5b6884;
    font-size: 15px;
    font-weight: 500;
}

    .login-text a {
        color: #1d6112;
        text-decoration: none;
        font-weight: 800;
    }


/* =====================================================
           RIGHT PANEL
        ===================================================== */

.registration-right {
    position: relative;
    overflow: hidden;
    padding: 45px 35px 30px;
    background: linear-gradient( 150deg, #e8f3ff 0%, #cfe4ff 43%, #edf6ff 100% );
}


    /* White curved section */

    .registration-right::before {
        content: "";
        position: absolute;
        left: -105px;
        top: -5%;
        width: 195px;
        height: 110%;
        border-radius: 50%;
        background: #fff;
        box-shadow: 8px 0 16px rgba(37,99,235,.06);
        z-index: 1;
    }


    /* Curved blue line */

    .registration-right::after {
        content: "";
        position: absolute;
        left: -92px;
        top: -5%;
        width: 175px;
        height: 110%;
        border-radius: 50%;
        border-right: 13px solid rgba(37,99,235,.12);
        z-index: 2;
    }


/* =====================================================
           ILLUSTRATION
        ===================================================== */

.illustration-area {
    position: relative;
    height: 390px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-illustration {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 390px;
    max-height: 370px;
    object-fit: contain;
    filter: drop-shadow( 0 18px 25px rgba(37,99,235,.18) );
    animation: illustrationFloat 4s ease-in-out infinite;
}


/* =====================================================
           CIRCLES
        ===================================================== */

.illustration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.8);
    background: radial-gradient( circle, rgba(255,255,255,.20), transparent 65% );
}

    .illustration-circle.one {
        width: 290px;
        height: 290px;
    }

    .illustration-circle.two {
        width: 350px;
        height: 350px;
        border-color: rgba(255,255,255,.55);
    }

    .illustration-circle.three {
        width: 410px;
        height: 410px;
        border-color: rgba(255,255,255,.35);
    }


/* =====================================================
           WHY JOIN
        ===================================================== */

.why-join {
    position: relative;
    z-index: 10;
}

.why-title {
    text-align: center;
    margin-bottom: 18px;
}

    .why-title h2 {
        margin: 0;
        color: #111827;
        font-size: 29px;
        font-weight: 800;
    }

        .why-title h2 span {
            color: #1d6112;
        }


/* =====================================================
           BENEFIT CARD
        ===================================================== */

.benefit-card {
    min-height: 75px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 9px;
    padding: 10px 15px;
    border-radius: 17px;
    background: rgba(255,255,255,.73);
    border: 1px solid rgba(255,255,255,.95);
    box-shadow: 0 8px 20px rgba(37,99,235,.08), inset 0 1px 1px rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    transition: .25s ease;
}

    .benefit-card:hover {
        transform: translateX(4px);
        box-shadow: 0 12px 25px rgba(37,99,235,.14);
    }


/* =====================================================
           BENEFIT ICON
        ===================================================== */

.benefit-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 23px;
}

.benefit-blue {
    color: #1d6112;
    background: linear-gradient( 145deg, #e7f1ff, #d5e8ff );
}

.benefit-pink {
    color: #ec2477;
    background: linear-gradient( 145deg, #ffe9f3, #ffd8e9 );
}

.benefit-orange {
    color: #f58a13;
    background: linear-gradient( 145deg, #fff0dd, #ffe5c7 );
}


/* =====================================================
           BENEFIT CONTENT
        ===================================================== */

.benefit-content {
    flex: 1;
}

    .benefit-content h3 {
        margin: 0 0 2px;
        color: #101828;
        font-size: 18px;
        font-weight: 800;
    }

    .benefit-content p {
        margin: 0;
        color: #5a6784;
        font-size: 14px;
        font-weight: 500;
    }


/* =====================================================
           GREEN CHECK
        ===================================================== */

.benefit-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #16a34a;
    border: 2px solid #22c55e;
    font-size: 10px;
}


/* =====================================================
           CITY
        ===================================================== */

.city-decoration {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    opacity: .24;
    z-index: 2;
}

.building {
    position: relative;
    width: 35px;
    background: linear-gradient( 180deg, #8db9f5, #6ca0eb );
}

    .building::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 7px;
        width: 5px;
        height: 5px;
        background: #fff;
        box-shadow: 12px 0 #fff, 0 12px #fff, 12px 12px #fff, 24px 12px #fff, 24px 24px #fff;
    }

    .building.b1 {
        height: 50px;
    }

    .building.b2 {
        height: 70px;
    }

    .building.b3 {
        height: 45px;
    }

    .building.b4 {
        height: 80px;
    }

    .building.b5 {
        height: 60px;
    }

    .building.b6 {
        height: 42px;
    }


/* =====================================================
           VALIDATION
        ===================================================== */

.field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,.08) !important;
}

.error-message {
    display: none;
    margin-top: 5px;
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
}


/* =====================================================
           ANIMATIONS
        ===================================================== */

@keyframes illustrationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes buttonShine {

    0% {
        left: -120%;
    }

    35%,
    100% {
        left: 150%;
    }
}


/* =====================================================
           TABLET
        ===================================================== */

@media (max-width: 1000px) {

    .registration-card {
        max-width: 700px;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .registration-right {
        display: none;
    }

    .registration-left {
        padding: 20px 40px 30px;
    }
}


/* =====================================================
           MOBILE
        ===================================================== */

@media (max-width: 600px) {

    .registration-page {
        padding: 15px;
    }


    .registration-left {
        padding: 20px 40px 30px;
    }

    .registration-close {
        top: 12px;
        right: 12px;
        width: 43px;
        height: 43px;
        font-size: 18px;
    }

    .registration-heading {
        margin-bottom: 25px;
    }

        .registration-heading h1 {
            font-size: 30px;
            letter-spacing: -.7px;
        }

        .registration-heading p {
            font-size: 12px;
        }

    .registration-input,
    .mobile-input {
        height: 42px;
    }

    .registration-input-icon {
        width: 54px;
    }

    .mobile-country {
        min-width: 92px;
        gap: 7px;
        font-size: 14px;
    }

    .registration-field label {
        font-size: 13px;
    }

    .registration-input input,
    .mobile-input input {
        font-size: 13px;
    }

    .create-account-btn {
        height: 50px;
        font-size: 14px;
    }

    .login-text {
        font-size: 13px;
    }

    .terms-text {
        font-size: 12px;
    }
}


/* =====================================================
           SMALL MOBILE
        ===================================================== */

@media (max-width: 380px) {

    .registration-left {
        padding-left: 13px;
        padding-right: 13px;
    }

    .registration-heading h1 {
        font-size: 27px;
    }

    .mobile-country {
        min-width: 78px;
        font-size: 13px;
    }
}



/* =========================================
   SWEETALERT WARNING CONFIRM BUTTON
========================================= */

.swal2-confirm.btn.btn-warning {
    background: linear-gradient(135deg, #ffb300, #ff8f00) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 28px !important;
    min-width: 100px;
    font-size: 14px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.30) !important;
    transition: all 0.2s ease-in-out !important;
}

    /* Hover */
    .swal2-confirm.btn.btn-warning:hover {
        background: linear-gradient(135deg, #ff9800, #f57c00) !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(255, 152, 0, 0.40) !important;
    }

    /* Active */
    .swal2-confirm.btn.btn-warning:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(255, 152, 0, 0.25) !important;
    }

    /* Focus */
    .swal2-confirm.btn.btn-warning:focus {
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25) !important;
    }
 


/* =========================================================
   PREMIUM REGISTRATION SUCCESS POPUP
   WHITE + BLUE 3D DESIGN
========================================================= */

.reg-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient( circle at center, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.72) );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: regOverlayIn .35s ease forwards;
}


/* =========================================================
   MAIN CARD
========================================================= */

.reg-popup-card {
    position: relative;
    width: 100%;
    max-width: 430px;
    padding: 45px 32px 30px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient( 145deg, #ffffff 0%, #f8fbff 45%, #eef6ff 100% );
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .25), 0 15px 35px rgba(37, 99, 235, .18), inset 0 1px 0 rgba(255,255,255,.95);
    transform-style: preserve-3d;
    animation: regCardIn .65s cubic-bezier(.17,.67,.3,1.25);
}


    /* Top blue shine */

    .reg-popup-card::before {
        content: "";
        position: absolute;
        top: -120px;
        left: -80px;
        width: 260px;
        height: 260px;
        background: radial-gradient( circle, rgba(59,130,246,.22), transparent 70% );
        pointer-events: none;
    }


    /* Bottom glow */

    .reg-popup-card::after {
        content: "";
        position: absolute;
        bottom: -100px;
        right: -80px;
        width: 250px;
        height: 250px;
        background: radial-gradient( circle, rgba(14,165,233,.18), transparent 70% );
        pointer-events: none;
    }


/* =========================================================
   SUCCESS ICON
========================================================= */

.reg-success-icon {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 145deg, #ffffff, #e8f3ff );
    box-shadow: 0 18px 35px rgba(37,99,235,.20), inset 0 2px 5px rgba(255,255,255,.9), inset 0 -4px 10px rgba(37,99,235,.08);
    transform: translateZ(35px);
    animation: regIconFloat 3s ease-in-out infinite;
}


    /* Blue ring */

    .reg-success-icon::before {
        content: "";
        position: absolute;
        inset: -7px;
        border-radius: 50%;
        border: 2px solid rgba(37,99,235,.16);
        box-shadow: 0 0 0 5px rgba(37,99,235,.04);
        animation: regRing 2s infinite;
    }


/* Inner blue circle */

.reg-check {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient( 145deg, #2563eb, #1d4ed8 );
    box-shadow: 0 10px 22px rgba(37,99,235,.35), inset 0 2px 2px rgba(255,255,255,.35), inset 0 -5px 10px rgba(0,0,0,.12);
    animation: regCheckPop .7s .25s both;
}


/* =========================================================
   CONTENT
========================================================= */

.reg-popup-content {
    position: relative;
    z-index: 5;
}


.reg-small-title {
    display: inline-block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.reg-popup-content h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.reg-popup-content p {
    max-width: 360px;
    margin: 8px auto 0;
    color: #1f53dc;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
    letter-spacing: 0.15px;
    background: linear-gradient( 135deg, rgba(13, 110, 253, 0.06), rgba(77, 163, 255, 0.02) );
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.04);
}

/* =========================================================
   DIVIDER
========================================================= */

.reg-divider {
    width: 55px;
    height: 4px;
    margin: 20px auto;
    border-radius: 20px;
    background: linear-gradient( 90deg, #2563eb, #38bdf8 );
    box-shadow: 0 4px 10px rgba(37,99,235,.2);
}


/* =========================================================
   LOGIN INFO
========================================================= */

.reg-login-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 11px 14px;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(239,246,255,.8);
    border: 1px solid #dbeafe;
}


.reg-lock {
    font-size: 15px;
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.reg-login-btn {
    position: relative;
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .7px;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient( 135deg, #2563eb, #1d4ed8 );
    box-shadow: 0 12px 25px rgba(37,99,235,.32), inset 0 1px 0 rgba(255,255,255,.35), inset 0 -4px 8px rgba(0,0,0,.12);
    transition: transform .2s ease, box-shadow .2s ease;
}


    .reg-login-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
        transform: skewX(-20deg);
        animation: regButtonShine 3s infinite;
    }


    .reg-login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 32px rgba(37,99,235,.38), inset 0 1px 0 rgba(255,255,255,.35);
    }


    .reg-login-btn:active {
        transform: translateY(1px) scale(.98);
    }


    .reg-login-btn i {
        transition: transform .25s ease;
    }


    .reg-login-btn:hover i {
        transform: translateX(5px);
    }


/* =========================================================
   COUNTDOWN
========================================================= */

.reg-countdown {
    margin-top: 14px;
    color: #94a3b8;
    font-size: 11px;
}


    .reg-countdown strong {
        color: #2563eb;
        font-size: 13px;
    }


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.reg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.reg-circle-1 {
    width: 90px;
    height: 90px;
    top: -40px;
    right: -35px;
    border: 12px solid rgba(37,99,235,.05);
}


.reg-circle-2 {
    width: 65px;
    height: 65px;
    bottom: -30px;
    left: -25px;
    border: 9px solid rgba(14,165,233,.06);
}


/* =========================================================
   DOTS
========================================================= */

.reg-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #60a5fa;
    opacity: .35;
}


.reg-dot-1 {
    top: 80px;
    left: 25px;
}


.reg-dot-2 {
    top: 145px;
    right: 22px;
    width: 5px;
    height: 5px;
}


.reg-dot-3 {
    bottom: 75px;
    left: 28px;
    width: 4px;
    height: 4px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes regOverlayIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes regCardIn {
    0% {
        opacity: 0;
        transform: perspective(900px) rotateX(18deg) rotateY(-8deg) translateY(50px) scale(.85);
    }

    100% {
        opacity: 1;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0) scale(1);
    }
}


@keyframes regCheckPop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    70% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}


@keyframes regIconFloat {
    0%, 100% {
        transform: translateZ(35px) translateY(0);
    }

    50% {
        transform: translateZ(35px) translateY(-6px);
    }
}


@keyframes regRing {
    0% {
        transform: scale(.9);
        opacity: .8;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}


@keyframes regButtonShine {
    0% {
        left: -100%;
    }

    35%, 100% {
        left: 150%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .reg-popup-overlay {
        padding: 16px;
    }

    .reg-popup-card {
        max-width: 100%;
        padding: 38px 22px 25px;
        border-radius: 24px;
    }

    .reg-success-icon {
        width: 82px;
        height: 82px;
    }

    .reg-check {
        width: 55px;
        height: 55px;
        font-size: 31px;
    }

    .reg-popup-content h2 {
        font-size: 25px;
    }

    .reg-popup-content p {
        font-size: 13px;
    }

    .reg-login-btn {
        height: 52px;
    }
}

/* =========================================================
   REGISTRATION BLUE THEME LOADER
========================================================= */
.registration-loader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    background: rgba(5, 15, 30, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}



/* =========================================================
   LOADER BOX
========================================================= */

.registration-loader-box {
    width: 190px;
    padding: 26px 20px 24px;
    text-align: center;
    background: linear-gradient( 145deg, #ffffff, #f4f8ff );
    border: 1px solid rgba(13, 110, 253, 0.18);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25), 0 0 30px rgba(13, 110, 253, 0.12);
    animation: loaderBoxIn 0.25s ease-out;
}


.registration-loader-box {
    position: relative !important;
    margin: 0 !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
}
/* =========================================================
   SPINNER
========================================================= */

.registration-loader-spinner {
    position: relative;
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* OUTER RING */

.spinner-ring {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 4px solid #e5efff;
    border-top-color: #1d6112;
    border-right-color: #4da3ff;
    animation: registrationSpin 0.85s linear infinite;
}


/* INNER ICON */

.spinner-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #1d6112, #4da3ff );
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.30);
}

    .spinner-icon i {
        animation: iconPulse 1.2s ease-in-out infinite;
    }


/* =========================================================
   TEXT
========================================================= */

.registration-loader-title {
    color: #17324d;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.registration-loader-text {
    color: #718096;
    font-size: 12px;
    font-weight: 500;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes registrationSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes iconPulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.88);
    }
}


@keyframes loaderBoxIn {

    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .registration-loader-box {
        width: 175px;
        padding: 24px 18px 22px;
        border-radius: 16px;
    }

    .registration-loader-spinner {
        width: 58px;
        height: 58px;
    }

    .spinner-ring {
        width: 54px;
        height: 54px;
    }
}

.registration-logo {
    width: 130px;
    height: 120px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(13, 110, 253, 0.15);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.12);
    overflow: hidden;
}

    .registration-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.site-name-highlight {
    color: #1d6112;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    background: linear-gradient( 135deg, rgba(13, 110, 253, 0.08), rgba(77, 163, 255, 0.15) );
    border: 1px solid rgba(13, 110, 253, 0.12);
    text-shadow: 0 1px 8px rgba(13, 110, 253, 0.12);
}


input#txtReferral:disabled, input#txtReferralName:disabled {
    background: linear-gradient( 135deg, #eef5ff, #e4efff ) !important;
    color: #6b7c93 !important;
    border-color: rgba(13, 110, 253, 0.15) !important;
    cursor: not-allowed;
    opacity: 1 !important;
    box-shadow: none !important;
}

/* =========================================
   DOWNLOAD IMAGE BUTTON
========================================= */

.reg-download-btn {
    width: 100%;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border: 1px solid rgba(13, 110, 253, 0.20);
    border-radius: 10px;
    background: linear-gradient( 135deg, #eef5ff, #e3efff );
    color: #1d6112;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .reg-download-btn i {
        font-size: 14px;
    }

    .reg-download-btn:hover {
        background: linear-gradient( 135deg, #dceaff, #d1e5ff );
        border-color: rgba(13, 110, 253, 0.35);
        color: #0757c9;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(13, 110, 253, 0.12);
    }

    .reg-download-btn:active {
        transform: translateY(0);
    }

    .reg-download-btn:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }