.elementor-81 .elementor-element.elementor-element-e80eac3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6fc69e8 *//* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080b18;
    color: #fff;
    overflow-x: hidden;
}


/* =========================
   BACKGROUND
========================= */

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.background span {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    filter: blur(90px);
    opacity: 0.25;
    animation: floating 9s ease-in-out infinite alternate;
}

.background span:nth-child(1) {
    top: -100px;
    left: -100px;
}

.background span:nth-child(2) {
    right: -100px;
    bottom: -100px;
    animation-delay: 2s;
}

.background span:nth-child(3) {
    top: 35%;
    left: 45%;
    animation-delay: 4s;
}

.background span:nth-child(4) {
    left: 5%;
    bottom: 5%;
    animation-delay: 6s;
}

@keyframes floating {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(35px, -30px) scale(1.12);
    }
}


/* =========================
   MAIN CONTAINER
========================= */

.container {
    width: 100%;
    max-width: 1080px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    background: rgba(15, 18, 35, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(15px);
}


/* =========================
   LEFT / WELCOME SECTION
========================= */

.welcome-section {
    padding: 55px 45px;

    background:
        linear-gradient(
            145deg,
            rgba(124, 58, 237, 0.95),
            rgba(6, 182, 212, 0.75)
        );

    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    right: -100px;
    top: -80px;
}

.welcome-section::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    left: -70px;
    bottom: -70px;
}


/* LOGO */

.logo {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.16);

    border: 1px solid rgba(255, 255, 255, 0.25);

    font-size: 25px;

    margin-bottom: 35px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}


/* HEADING */

.welcome-section h1 {
    position: relative;
    z-index: 2;

    font-size: 48px;
    line-height: 1.1;

    font-weight: 700;

    margin-bottom: 20px;
}

.welcome-section h1 span {
    color: #e0fbff;
}


/* DESCRIPTION */

.welcome-section > p {
    position: relative;
    z-index: 2;

    max-width: 390px;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);

    margin-bottom: 35px;
}


/* =========================
   FEATURES
========================= */

.features {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.feature {
    display: flex;

    align-items: center;

    gap: 15px;
}

.feature > i {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature h3 {
    font-size: 14px;

    margin-bottom: 3px;
}

.feature p {
    font-size: 11px;

    color: rgba(255, 255, 255, 0.68);
}


/* =========================
   FORM SECTION
========================= */

.form-section {
    padding: 45px;

    background: #101426;

    min-width: 0;
}


/* HEADER */

.form-header {
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 30px;

    line-height: 1.3;

    margin-bottom: 7px;
}

.form-header p {
    font-size: 12px;

    color: #9ca3af;
}


/* =========================
   INPUT GROUP
========================= */

.input-group {
    position: relative;

    width: 100%;

    margin-bottom: 20px;
}


/* LEFT ICON */

.input-group > i:first-child {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #8b5cf6;

    font-size: 14px;

    pointer-events: none;

    z-index: 3;
}


/* INPUT */

.input-group input {
    width: 100%;
    height: 56px;

    padding: 0 48px;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.13);

    outline: none;

    background: rgba(255, 255, 255, 0.045);

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* INPUT FOCUS */

.input-group input:focus {
    border-color: #8b5cf6;

    background: rgba(139, 92, 246, 0.07);

    box-shadow:
        0 0 0 3px rgba(139, 92, 246, 0.10);
}


/* DATE INPUT */

.input-group input[type="date"] {
    color-scheme: dark;
    padding-right: 15px;
}

.input-group input[type="date"] + label {
    top: 0;
    font-size: 10px;
    color: #a78bfa;
    background: #101426;
}


/* FLOATING LABEL */

.input-group label {
    position: absolute;

    left: 45px;
    top: 50%;

    transform: translateY(-50%);

    padding: 0 5px;

    color: #9ca3af;

    font-size: 12px;

    pointer-events: none;

    transition:
        top 0.2s ease,
        font-size 0.2s ease,
        color 0.2s ease;

    background: transparent;

    z-index: 2;
}


/*
   FIX:
   Label moves up when input is focused
   or contains a valid value.
*/

.input-group input:focus + label,
.input-group input:valid + label {
    top: 0;

    font-size: 10px;

    color: #a78bfa;

    background: #101426;
}


/* =========================
   PASSWORD EYE
========================= */

.input-group .eye-icon {
    position: absolute;

    right: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #8f96a8;

    font-size: 14px;

    cursor: pointer;

    z-index: 5;

    transition: color 0.2s ease;
}

.input-group .eye-icon:hover {
    color: #a78bfa;
}


/* =========================
   PASSWORD STRENGTH
========================= */

.password-strength {
    margin-top: -7px;

    margin-bottom: 20px;
}

.strength-bar {
    width: 0;

    height: 4px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #ef4444,
        #f59e0b,
        #22c55e
    );

    transition: width 0.3s ease;
}

.password-strength small {
    display: block;

    margin-top: 5px;

    color: #8f96a8;

    font-size: 9px;
}


/* =========================
   GENDER
========================= */

.gender-section {
    margin-bottom: 20px;
}

.section-label {
    display: block;

    margin-bottom: 9px;

    color: #9ca3af;

    font-size: 11px;
}

.gender-options {
    display: flex;

    gap: 10px;
}

.gender-options label {
    flex: 1;

    cursor: pointer;
}

.gender-options input {
    display: none;
}

.gender-options span {
    display: block;

    width: 100%;

    padding: 10px;

    text-align: center;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #9ca3af;

    background: rgba(255, 255, 255, 0.03);

    font-size: 11px;

    transition: 0.25s ease;
}

.gender-options span:hover {
    border-color: rgba(139, 92, 246, 0.5);

    color: #fff;
}

.gender-options input:checked + span {
    border-color: #8b5cf6;

    background: rgba(139, 92, 246, 0.15);

    color: #fff;

    box-shadow:
        0 0 15px rgba(139, 92, 246, 0.08);
}


/* =========================
   TERMS
========================= */

.terms {
    margin-bottom: 22px;
}

.terms label {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #8f96a8;

    font-size: 10px;

    line-height: 1.6;

    cursor: pointer;
}

.terms input {
    flex-shrink: 0;

    width: 14px;
    height: 14px;

    margin-top: 2px;

    accent-color: #8b5cf6;

    cursor: pointer;
}

.terms a {
    color: #a78bfa;

    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}


/* =========================
   REGISTER BUTTON
========================= */

.register-btn {
    width: 100%;

    height: 55px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #06b6d4
        );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(124, 58, 237, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.register-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(124, 58, 237, 0.32);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn i {
    transition: transform 0.25s ease;
}

.register-btn:hover i {
    transform: translateX(4px);
}


/* =========================
   LOGIN
========================= */

.login-link {
    text-align: center;

    margin-top: 20px;

    color: #8f96a8;

    font-size: 11px;
}

.login-link a {
    color: #a78bfa;

    text-decoration: none;

    font-weight: 600;

    margin-left: 3px;
}

.login-link a:hover {
    text-decoration: underline;
}


/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 850px) {

    body {
        padding: 20px;
    }

    .container {
        grid-template-columns: 1fr;

        max-width: 620px;
    }

    .welcome-section {
        padding: 40px;
    }

    .welcome-section h1 {
        font-size: 40px;
    }

    .welcome-section > p {
        max-width: 520px;
    }

    .features {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 15px;
    }

    .feature {
        align-items: flex-start;
    }

    .form-section {
        padding: 40px;
    }
}


/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 600px) {

    body {
        display: block;

        padding: 15px;
    }

    .container {
        width: 100%;

        border-radius: 18px;
    }

    .welcome-section {
        padding: 30px 25px;
    }

    .logo {
        width: 55px;
        height: 55px;

        margin-bottom: 25px;
    }

    .welcome-section h1 {
        font-size: 34px;
    }

    .welcome-section > p {
        font-size: 12px;

        line-height: 1.7;
    }

    .features {
        display: flex;

        gap: 15px;
    }

    .feature > i {
        width: 40px;
        height: 40px;
    }

    .form-section {
        padding: 30px 25px;
    }

    .form-header h2 {
        font-size: 25px;
    }

    .gender-options {
        flex-direction: column;

        gap: 8px;
    }
}


/* =========================
   VERY SMALL SCREEN
========================= */

@media (max-width: 380px) {

    body {
        padding: 10px;
    }

    .welcome-section,
    .form-section {
        padding: 25px 18px;
    }

    .welcome-section h1 {
        font-size: 30px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .input-group input {
        height: 52px;

        font-size: 12px;
    }

    .register-btn {
        height: 52px;
    }
}/* End custom CSS */