/* body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #cabfdc;
}

h1 {
    color: #333;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

form {
    background: #c5ade9;
    padding: 20px;
    border: 1px solid #ccc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f1f4f8;
    color: #1f2937;
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;

    background: #1f4f82;
    color: white;

    font-size: 22px;
    font-weight: bold;
}

h1 {
    text-align: center;
    margin-bottom: 8px;
}

.subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-top: 16px;
    margin-bottom: 6px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px;

    border: 1px solid #d1d5db;
    border-radius: 6px;

    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: #1f4f82;
}

.warning {
    font-size: 12px;
    color: #b45309;
    margin-top: 10px;
}

button {
    width: 100%;
    margin-top: 20px;

    padding: 13px;

    border: none;
    border-radius: 6px;

    background: #1f4f82;
    color: white;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
}

button:hover {
    background: #173b61;
}

.training-notice {
    margin-top: 25px;

    text-align: center;

    font-size: 11px;
    color: #9ca3af;
    letter-spacing: 1px;
} */


/* =========================================
   GLOBAL
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 50% 50%,
            #6d18d9 0%,
            #350b72 40%,
            #16052f 100%
        );

    color: #ffffff;
}


/* =========================================
   PAGE
========================================= */

.page-wrapper {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.login-container {
    width: 100%;
    max-width: 1380px;
    min-height: 760px;

    display: grid;

    grid-template-columns:
        38% 62%;

    border-radius: 30px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.45);
}


/* =========================================
   LEFT LOGIN PANEL
========================================= */

.login-panel {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf8ff 100%
        );

    color: #251044;

    padding:
        50px 60px;

    display: flex;

    flex-direction: column;
}


/* =========================================
   BRAND
========================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 14px;
}

.brand-icon {
    position: relative;

    width: 42px;
    height: 42px;
}

.brand-icon span {
    position: absolute;

    width: 25px;
    height: 25px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #8d35ff,
            #4b08a8
        );
}

.brand-icon span:first-child {
    top: 2px;
    left: 2px;
}

.brand-icon span:last-child {
    bottom: 2px;
    right: 2px;

    opacity: 0.85;
}

.brand h2 {
    font-size: 22px;

    color: #421080;

    margin-bottom: 3px;
}

.brand p {
    font-size: 14px;

    color: #6e6180;
}


/* =========================================
   PROFILE ICON
========================================= */

.profile-icon {
    width: 105px;
    height: 105px;

    margin:
        75px auto 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #7422e9,
            #3e087f
        );

    box-shadow:
        0 15px 30px
        rgba(92, 20, 180, 0.25);
}

.profile-icon svg {
    width: 55px;
    height: 55px;

    fill: none;

    stroke: white;

    stroke-width: 1.5;
}


/* =========================================
   FORM
========================================= */

.login-form {
    width: 100%;
    max-width: 390px;

    margin: 0 auto;
}

.input-wrapper {
    position: relative;

    width: 100%;

    margin-bottom: 20px;
}

.input-wrapper input {
    width: 100%;

    height: 55px;

    padding:
        0 20px 0 55px;

    border:
        1.5px solid #6e20c5;

    border-radius: 30px;

    background: #ffffff;

    color: #35105e;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.input-wrapper input:focus {
    border-color: #8a2be2;

    box-shadow:
        0 0 0 4px
        rgba(138, 43, 226, 0.12);
}

.input-wrapper input::placeholder {
    color: #635a6e;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 0.5px;
}

.input-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    width: 22px;
    height: 22px;

    transform:
        translateY(-50%);

    fill: none;

    stroke: #3f126d;

    stroke-width: 1.6;

    pointer-events: none;
}


/* =========================================
   SIGN IN BUTTON
========================================= */

.sign-in-button {
    width: 100%;

    height: 55px;

    border: none;

    border-radius: 30px;

    background:
        linear-gradient(
            90deg,
            #5d12bc,
            #8b28e8
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 0.8px;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(98, 20, 190, 0.28);

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.sign-in-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(98, 20, 190, 0.35);
}


/* =========================================
   FORM OPTIONS
========================================= */

.form-options {
    margin-top: 15px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 12px;
}

.form-options a {
    color: #5d16a9;

    text-decoration: none;
}

.form-options a:hover {
    text-decoration: underline;
}

.remember {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #574c63;

    cursor: pointer;
}

.remember input {
    accent-color: #6b16ca;
}


/* =========================================
   SIMULATION NOTICE
========================================= */

.simulation-notice {
    text-align: center;

    font-size: 10px;

    letter-spacing: 2px;

    color: #9a8fa6;

    margin-top: 50px;
}


/* =========================================
   DOTS
========================================= */

.dots {
    margin-top: auto;

    display: flex;

    justify-content: center;

    gap: 10px;
}

.dots span {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #c6a5eb;
}

.dots span.active {
    background: #6d16c8;
}


/* =========================================
   RIGHT WELCOME PANEL
========================================= */

.welcome-panel {
    position: relative;

    overflow: hidden;

    min-height: 760px;

    background:
        linear-gradient(
            135deg,
            #32105e 0%,
            #5910a5 45%,
            #8a1de0 100%
        );
}


/* =========================================
   DECORATIVE GLOW SHAPES
========================================= */

.glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}

.glow-one {
    width: 560px;
    height: 760px;

    left: 0;
    top: -100px;

    background:
        radial-gradient(
            ellipse,
            rgba(214, 112, 255, 0.95),
            rgba(133, 25, 235, 0.55) 40%,
            transparent 70%
        );

    transform:
        rotate(18deg);
}

.glow-two {
    width: 700px;
    height: 700px;

    right: -250px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(224, 126, 255, 0.75),
            rgba(125, 20, 210, 0.35) 50%,
            transparent 70%
        );
}

.glow-three {
    width: 570px;
    height: 570px;

    left: 250px;
    bottom: -180px;

    background:
        radial-gradient(
            circle,
            rgba(69, 4, 120, 0.95),
            rgba(105, 12, 180, 0.45) 65%,
            transparent 70%
        );

    border:
        2px solid
        rgba(221, 126, 255, 0.8);

    box-shadow:
        0 0 40px
        rgba(222, 126, 255, 0.7);
}


/* =========================================
   NAVIGATION
========================================= */

.navigation {
    position: relative;

    z-index: 10;

    height: 100px;

    padding:
        0 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 45px;
}

.nav-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    opacity: 0.95;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-actions {
    display: flex;

    align-items: center;

    gap: 25px;
}

.nav-signin {
    border: none;

    border-radius: 25px;

    padding:
        12px 30px;

    background:
        rgba(91, 13, 184, 0.85);

    color: white;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;
}

.menu-button {
    border: none;

    background: transparent;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


/* =========================================
   WELCOME CONTENT
========================================= */

.welcome-content {
    position: relative;

    z-index: 5;

    height: calc(100% - 100px);

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;

    padding:
        0 100px 50px 100px;

    text-align: right;
}

.welcome-content h1 {
    font-size: clamp(
        60px,
        7vw,
        100px
    );

    line-height: 1;

    margin-bottom: 25px;

    font-weight: 700;

    letter-spacing: -3px;
}

.welcome-content p {
    font-size: 16px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.9);
}

.signup-text {
    margin-top: 45px;

    font-size: 15px;

    color:
        rgba(255, 255, 255, 0.9);
}

.signup-text a {
    color: white;

    font-weight: bold;

    text-decoration: none;

    margin-left: 5px;
}

.signup-text a:hover {
    text-decoration: underline;
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 1000px) {

    .page-wrapper {
        padding: 20px;
    }

    .login-container {
        grid-template-columns: 1fr;

        max-width: 550px;
    }

    .welcome-panel {
        min-height: 500px;
    }

    .login-panel {
        min-height: 650px;
    }

    .navigation {
        padding:
            0 30px;
    }

    .nav-links {
        display: none;
    }

    .welcome-content {
        align-items: center;

        text-align: center;

        padding:
            0 30px 50px;
    }

    .welcome-content h1 {
        font-size: 65px;
    }
}


@media (max-width: 500px) {

    .page-wrapper {
        padding: 10px;
    }

    .login-container {
        border-radius: 20px;
    }

    .login-panel {
        padding:
            35px 25px;
    }

    .profile-icon {
        margin-top: 55px;
    }

    .welcome-panel {
        min-height: 420px;
    }

    .navigation {
        padding:
            0 20px;
    }

    .nav-signin {
        display: none;
    }

    .welcome-content h1 {
        font-size: 52px;
    }

    .welcome-content p {
        font-size: 14px;
    }

    .glow-three {
        left: 80px;
    }
}