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

:root {
    --p: hsl(168 78% 21%);
    --p-dk: hsl(168 74% 11%);
    --p-lt: hsl(168 42% 92%);
    --p-mid: hsl(168 60% 16%);
    --acc: hsl(42 100% 49%);
    --acc-dk: hsl(42 100% 40%);
    --neutral: hsl(180 5% 52%);
    --dark: hsl(180 8% 13%);
    --page: hsl(180 12% 96%);
    --err: hsl(0 72% 51%);
    --sd: 0 1px 3px hsl(168 78% 21% / 0.08), 0 1px 2px hsl(168 78% 21% / 0.06);
    --sm: 0 4px 16px hsl(168 78% 21% / 0.1);
    --lg: 0 12px 40px hsl(168 78% 21% / 0.16);
}

body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    background: var(--page);
    min-height: 100vh;
    width: 100%;
    /* min-height: 100%; */
    background: linear-gradient(
        145deg,
        hsl(168 78% 21%) 0%,
        hsl(168 70% 14%) 45%,
        hsl(168 64% 10%) 100%
    );
    color: #fff;
    overflow-x: hidden;
    position: relative;
    display: flex;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* BACKGROUND */
body::before {
    content: "";
    position: fixed;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    left: -150px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 190, 0, 0.08);
    z-index: 0;
}

/* ── LEFT PANEL ── */
.left-panel {
    width: 52%;
    min-height: 100vh;
    background: linear-gradient(
        155deg,
        hsl(168 78% 21%) 0%,
        hsl(168 72% 15%) 40%,
        hsl(168 68% 10%) 100%
    );
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 48px 44px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Decorative circles */
.left-panel::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.left-panel::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(248, 180, 0, 0.07);
    pointer-events: none;
}

/* Grid dots */
.panel-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.09) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
}

/* Diagonal accent stripe */
.panel-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--acc) 40%,
        transparent 100%
    );
    opacity: 0.5;
}

/* ── LEFT: Logo ── */
.left-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    animation: fadeDown 0.5s ease-out both;
}

.logo-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--acc);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px hsl(42 100% 49% / 0.4);
}

.logo-box span {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--p-dk);
}

.logo-text {
    line-height: 1;
}

.logo-text .name {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    letter-spacing: -0.01em;
}

.logo-text .sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 2px;
}

/* ── LEFT: Center content ── */
.left-center {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.15s ease-out both;
}

.left-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.left-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acc);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.left-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.left-heading .acc-text {
    background: linear-gradient(90deg, var(--acc), hsl(42 100% 68%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.left-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 380px;
    margin-bottom: 36px;
}

/* Stats pills row */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    transition: all 0.2s;
}

.stat-pill:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-2px);
}

.stat-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.stat-pill-val {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    line-height: 1;
}

.stat-pill-lbl {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Floating glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 20px 22px;
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.6s 0.3s ease-out both;
}

.glass-card-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.prog-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.prog-row:last-child {
    margin-bottom: 0;
}

.prog-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    width: 150px;
    flex-shrink: 0;
}

.prog-track {
    flex: 1;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    border-radius: 99px;
}

@keyframes fill {
    from {
        width: 0;
    }
}

.prog-fill {
    animation: fill 1.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.prog-fill.d1 {
    animation-delay: 0.6s;
}

.prog-fill.d2 {
    animation-delay: 0.75s;
}

.prog-fill.d3 {
    animation-delay: 0.9s;
}

.prog-val {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

/* ── LEFT: Bottom ── */
.left-bottom {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.45s ease-out both;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feat-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.feat-chip i {
    font-size: 10px;
    color: var(--acc);
}

/* ── RIGHT PANEL ── */
.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    overflow-y: auto;
    background: var(--page);
    position: relative;
}

/* subtle bg pattern */
.right-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 80% 20%,
            hsl(168 42% 92% / 0.6) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 20% 80%,
            hsl(42 100% 92% / 0.4) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* ── Form Card ── */
.form-card {
    width: 100%;
    max-width: 440px;
    /* background:#fff; */
    border-radius: 24px;
    padding: 44px 40px;
    /* box-shadow: 0 2px 8px hsl(168 78% 21% / .06),
              0 16px 48px hsl(168 78% 21% / .12); */
    position: relative;
    z-index: 1;
    animation: slideIn 0.5s 0.1s ease-out both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Top badge */
.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--p-lt);
    border: 1px solid rgba(18, 91, 80, 0.2);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 22px;
}

.form-badge i {
    font-size: 10px;
}

.form-title {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 6px;
}

.form-sub {
    font-size: 13.5px;
    color: var(--neutral);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ── Role switcher ── */
.role-switcher {
    display: flex;
    gap: 6px;
    background: var(--page);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 28px;
    border: 1px solid hsl(180 5% 88%);
}

.role-btn {
    flex: 1;
    padding: 9px 8px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    background: transparent;
    color: var(--neutral);
}

.role-btn.active {
    background: #fff;
    color: var(--p);
    box-shadow: 0 2px 8px hsl(168 78% 21% / 0.1);
}

.role-btn i {
    font-size: 12px;
}

/* ── Field ── */
.field {
    margin-bottom: 18px;
}

.field-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}

.field-label span {
    color: var(--err);
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral);
    font-size: 14px;
    pointer-events: none;
    transition: color 0.15s;
}

.field-input {
    width: 100%;
    height: 48px;
    padding: 0 44px 0 42px;
    border-radius: 12px;
    border: 1.5px solid hsl(180 5% 86%);
    background: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.field-input::placeholder {
    color: hsl(180 5% 72%);
    font-weight: 400;
}

.field-input:focus {
    border-color: var(--p);
    box-shadow: 0 0 0 3px hsl(168 78% 21% / 0.1);
}

.field-input.error {
    border-color: var(--err);
    box-shadow: 0 0 0 3px hsl(0 72% 51% / 0.1);
}

.field-input:focus ~ .field-icon,
.field-wrap:focus-within .field-icon {
    color: var(--p);
}

/* password toggle */
.pw-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral);
    font-size: 14px;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.15s;
}

.pw-toggle:hover {
    color: var(--p);
}

/* error message */
.field-err {
    font-size: 11.5px;
    color: var(--err);
    font-weight: 600;
    margin-top: 5px;
    display: none;
}

.field-err.show {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Options row ── */
.options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    user-select: none;
}

.check-label input {
    display: none;
}

.check-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid hsl(180 5% 80%);
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.check-label input:checked + .check-box {
    background: var(--p);
    border-color: var(--p);
}

.check-box i {
    font-size: 9px;
    color: #fff;
    display: none;
}

.check-label input:checked + .check-box i {
    display: block;
}

.forgot-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--p);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.forgot-link:hover {
    opacity: 0.7;
}

/* ── Submit button ── */
.btn-submit {
    width: 100%;
    height: 50px;
    background: var(--p);
    color: #fff;
    border: none;
    border-radius: 13px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px hsl(168 78% 21% / 0.28);
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.btn-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.btn-submit:hover {
    background: var(--p-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsl(168 78% 21% / 0.35);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* spinner */
.spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    animation: spin 0.6s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: hsl(180 5% 90%);
}

.divider-text {
    font-size: 12px;
    color: var(--neutral);
    font-weight: 600;
    white-space: nowrap;
}

/* ── Footer text ── */
.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--neutral);
}

.form-footer a {
    color: var(--p);
    font-weight: 700;
    text-decoration: none;
}

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

/* ── Info strip ── */
.info-strip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: hsl(42 100% 97%);
    border: 1px solid hsl(42 100% 85%);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 20px;
}

.info-strip i {
    color: hsl(42 100% 40%);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.info-strip p {
    font-size: 12px;
    color: hsl(42 100% 30%);
    line-height: 1.6;
}

.info-strip strong {
    font-weight: 700;
}

/* ── Alert box ── */
.alert-box {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
    display: none;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    gap: 10px;
}

.alert-box.show {
    display: flex;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-success {
    background: var(--p-lt);
    border: 1px solid rgba(18, 91, 80, 0.25);
    color: var(--p-dk);
}

/* ── Mobile: hide left panel ── */
@media (max-width: 900px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        padding: 24px 16px;
        min-height: 100vh;
    }

    .form-card {
        padding: 36px 28px;
        max-width: 400px;
    }

    body {
        overflow: auto;
    }
}

/* ── Success state overlay ── */
.success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    padding: 40px;
    animation: fadeScale 0.3s ease-out both;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-overlay.show {
    display: flex;
}

.success-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px hsl(168 78% 21% / 0.35);
    animation: bounceIn 0.5s 0.1s ease-out both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.success-ring i {
    color: #fff;
    font-size: 28px;
}

/* GRID */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}

/* MAIN */
.main {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;

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

    padding: 48px;
}

/* WRAPPER */
.wrapper {
    width: 100%;
    max-width: 1300px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT */
.left {
    flex: 1;
    max-width: 600px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.logo-box {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--acc);

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

    box-shadow: 0 8px 24px rgba(255, 190, 0, 0.35);
}

.logo-box span {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--p-dk);
}

.logo-text .title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.logo-text .sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* BADGE */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 16px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 28px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acc);
}

/* TITLE */
.heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.heading span {
    background: linear-gradient(90deg, var(--acc), hsl(42 100% 70%));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESC */
.desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);

    max-width: 520px;
    margin-bottom: 34px;
}

/* FEATURES */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s;
}

.feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.feature i {
    color: var(--acc);
    font-size: 12px;
}

/* CARD */
.card {
    width: 100%;
    max-width: 460px;

    background: #fff;
    color: var(--dark);

    border-radius: 28px;

    padding: 42px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.14);
}

/* CARD BADGE */
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--p-lt);
    color: var(--p);

    border-radius: 999px;
    padding: 6px 14px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 22px;
}

/* FORM TITLE */
.form-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-sub {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral);
    margin-bottom: 28px;
}

/* FIELD */
.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral);
}

.input {
    width: 100%;
    height: 50px;

    border-radius: 14px;
    border: 1.5px solid hsl(180 5% 86%);

    padding: 0 44px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;

    outline: none;

    transition: 0.2s;
}

.input:focus {
    border-color: var(--p);
    box-shadow: 0 0 0 4px rgba(18, 91, 80, 0.1);
}

/* TOGGLE */
.toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);

    border: none;
    background: none;

    color: var(--neutral);

    cursor: pointer;
}

/* OPTIONS */
.options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 24px;
}

.check {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 500;
}

.check input {
    accent-color: var(--p);
}

.forgot {
    border: none;
    background: none;

    color: var(--p);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

/* BUTTON */
.submit {
    width: 100%;
    height: 52px;

    border: none;
    border-radius: 15px;

    background: var(--p);
    color: #fff;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    box-shadow: 0 10px 30px rgba(18, 91, 80, 0.28);
}

.submit:hover {
    background: var(--p-dk);
    transform: translateY(-2px);
}

/* DIVIDER */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 22px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: hsl(180 5% 88%);
}

.divider span {
    font-size: 12px;
    color: var(--neutral);
    font-weight: 600;
}

/* FOOTER */
.footer {
    margin-top: 24px;
    text-align: center;

    font-size: 13px;
    color: var(--neutral);
}

.footer a {
    color: var(--p);
    font-weight: 700;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 980px) {
    .main {
        padding: 28px 18px;
    }

    .wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .left {
        max-width: 100%;
        text-align: center;
    }

    .desc {
        max-width: 100%;
    }

    .features {
        justify-content: center;
    }

    .card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .main {
        padding: 20px 14px;
    }

    .card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .heading {
        font-size: 2rem;
    }

    .role-switch {
        flex-direction: column;
    }

    .role-btn {
        width: 100%;
    }

    .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .logo {
        justify-content: center;
    }

    .form-title {
        font-size: 24px;
    }
}
