/* ---------- PAGE ---------- */
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Arial,
    sans-serif;
}

/* ---------- NAV ---------- */
.top-nav {
    max-width: 1500px;
    margin: auto;
    padding: 30px
    60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(
      145deg,
      #1816B8,
      #3d55ff
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.brand-text {
    font-size: 26px;
    font-weight: 700;
    color: #1816B8;
}

/* ---------- TOP LOGIN ---------- */
.top-login {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-login input {
    width: 170px;
    height: 42px;
    font-size: 16px;
    padding: 0
    16px;
    border-radius: 12px;
}

.top-login button {
    width: 120px;
    height: 42px;
    font-size: 16px;
    border-radius: 12px;
}

/* ---------- HERO ---------- */
.hero {
    max-width: 1500px;
    margin: auto;
    padding: 20px
    60px
    60px;
    display: grid;
    grid-template-columns: 2fr
    3.2fr;
    gap: 20px;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.hero-right {
    width: 100%;
    display: flex;
}

/* ---------- TEXT ---------- */
.hero-badge {
    width: fit-content;
    padding: 12px
    22px;
    border-radius: 999px;
    background: #f6f8ff;
    color: #3156ff;
    font-size: 14px;
}

.hero-text h1 {
    margin: 0
    0
    24px
    0;
    font-size: 48px;
    line-height: 1.02;
    color: #18273a;
}

.blue-text {
    color: #3156ff;
}

@media (max-width:999px) {
    .hero-text p {
        margin: 0;
        max-width: 560px;
        font-size: 16px;
        line-height: 1.6;
        color: #607285;
    }
}

/* ---------- SIGNUP ---------- */
.signup-region {
    background: white;
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 20px 50px
    rgba(
      0,
      0,
      0,
      0.05
    );
}

.signup-region h2 {
    margin-top: -11px;
    margin-bottom: 22px;
    font-size: 24px;
}

.signup-two {
    display: grid;
    grid-template-columns: 1fr
    1fr;
    gap: 14px;
    margin-bottom: 7px;
}

.signup-region > div {
    margin-bottom: 14px;
}

/* ---------- INPUT ---------- */
input,
select {
    width: auto;
    min-width: 260px;
    height: 32px;
    padding: 0
    20px;
    border: 1px solid
    #dce4ee;
    border-radius: 16px;
    box-sizing: border-box;
    background: white;
    font-size: 16px;
}

/* ---------- BUTTON ---------- */
button {
    width: auto;
    height: 32px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(
      90deg,
      #1816B8,
      #4a60ff
    );
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.signup-region button {
    min-width: 260px;
}

/* ---------- LOGIN INLINE ---------- */
.login-inline {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.login-inline button {
    width: auto;
    height: auto;
    background: none;
    color: #3156ff;
    padding: 0;
}

/* ---------- IMAGE ---------- */
.hero-right img {
    display: block;
}

/* ---------- MOBILE ---------- */
@media (

max-width: 1000px

) {
    .top-nav {
        flex-direction: column;
        gap: 16px;
    }

    .top-login {
        flex-direction: column;
        width: 100%;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .hero-right {
        order: -1;
        justify-content: flex-start;
    }

    .hero-text h1 {
        font-size: 46px;
    }

    .signup-region {
        width: auto;
    }

    .signup-two {
        grid-template-columns: 1fr;
    }
}
