/* =========================================================
   FUTUREVERSE INSTRUCTOR ACCOUNT
   PREMIUM REGISTER-STYLE DESIGN
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #4f46e5;
    --primary-light: #6d5cff;

    --primary-soft: #eef1ff;

    --text: #20233d;
    --text-dark: #2b2e4a;
    --text-medium: #555b73;
    --text-light: #8c91a5;

    --border: #ececf5;
    --border-hover: #cfd5ff;

    --white: #ffffff;

    --danger: #ef4444;
    --danger-soft: #fff1f2;

    --success: #16a34a;

    --shadow:
        0 25px 70px rgba(40, 45, 100, 0.12);

    --button-shadow:
        0 18px 40px rgba(79, 70, 229, 0.30);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    font-family: "Poppins", sans-serif;

    background: #ffffff;

    color: var(--text);

    overflow-x: hidden;

}


/* =========================================================
   SOFT BACKGROUND
========================================================= */

body::before {

    content: "";

    position: fixed;

    width: 430px;
    height: 430px;

    top: -180px;
    left: -160px;

    background:
        radial-gradient(
            circle,
            rgba(79, 70, 229, 0.10),
            transparent 70%
        );

    pointer-events: none;

    z-index: -1;

}


body::after {

    content: "";

    position: fixed;

    width: 430px;
    height: 430px;

    bottom: -200px;
    right: -160px;

    background:
        radial-gradient(
            circle,
            rgba(109, 92, 255, 0.09),
            transparent 70%
        );

    pointer-events: none;

    z-index: -1;

}


/* =========================================================
   MAIN CARD
========================================================= */

.instructor-onboarding {

    width: min(1100px, 92%);

    margin: 40px auto 60px;

    padding: 42px 55px 55px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid #f0f0f8;

    border-radius: 30px;

    box-shadow: var(--shadow);

    animation: instructorPopup 0.7s ease;

}


@keyframes instructorPopup {

    from {

        opacity: 0;

        transform:
            translateY(30px)
            scale(0.97);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================================================
   TOP HEADER
========================================================= */

.onboarding-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 55px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 13px;

}


.brand-logo {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #6d5cff
        );

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(79, 70, 229, 0.25);

}


.brand-text h1 {

    font-size: 18px;

    line-height: 1.2;

    color: #242640;

}


.brand-text span {

    display: block;

    margin-top: 3px;

    font-size: 10px;

    letter-spacing: 1.6px;

    font-weight: 600;

    color: #8c91a5;

}


.secure-badge {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;

}


.secure-badge i {

    font-size: 19px;

}


/* =========================================================
   INTRO
========================================================= */

.onboarding-intro {

    text-align: center;

    margin-bottom: 42px;

}


.intro-label {

    display: inline-block;

    margin-bottom: 9px;

    color: #666bd1;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.onboarding-intro h2 {

    color: #20233d;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.2;

    font-weight: 700;

}


.onboarding-intro h2 span {

    color: var(--primary);

}


.onboarding-intro p {

    max-width: 680px;

    margin: 13px auto 0;

    color: #9699aa;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   STEP PROGRESS
   IMPORTANT:
   EXISTING STEP DESIGN KE STRUCTURE KO PRESERVE
========================================================= */

.step-progress {

    position: relative;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin: 0 15px 60px;

}


.step-item {

    position: relative;

    z-index: 2;

    width: 25%;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


.step-number {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #ececf5;

    color: #9da1b2;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s ease;

}


.step-item span {

    color: #9699aa;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.4;

    transition: 0.3s ease;

}


.step-item.active .step-number {

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #6d5cff
        );

    border-color: var(--primary);

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(79, 70, 229, 0.25);

}


.step-item.active span {

    color: var(--primary);

}


/* CONNECTING LINE */

.progress-line {

    position: absolute;

    top: 21px;

    left: 12.5%;

    width: 75%;

    height: 2px;

    background: #ececf5;

    z-index: 1;

}


.progress-line-fill {

    width: 0%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            #4f46e5,
            #6d5cff
        );

    transition: width 0.45s ease;

}


/* =========================================================
   FORM STEP
========================================================= */

.form-step {

    display: none;

    animation: stepFade 0.4s ease;

}


.form-step.active {

    display: block;

}


@keyframes stepFade {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   STEP HEADING
========================================================= */

.step-heading {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 36px;

}


.step-heading-icon {

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 25px;

}


.step-heading > div:last-child span {

    display: block;

    margin-bottom: 3px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


.step-heading h3 {

    color: #292c48;

    font-size: 26px;

    line-height: 1.25;

    font-weight: 700;

}


.step-heading p {

    margin-top: 5px;

    color: #9699aa;

    font-size: 13px;

}


/* =========================================================
   FORM GRID
========================================================= */

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 32px;

    row-gap: 25px;

}


.form-group {

    min-width: 0;

}


.full-width {

    grid-column: 1 / -1;

}


/* =========================================================
   LABEL
========================================================= */

.form-group > label {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 9px;

    color: #454961;

    font-size: 14px;

    font-weight: 600;

}


.required {

    color: #ef4444;

}


.optional {

    margin-left: 5px;

    color: #9a9ead;

    font-size: 11px;

    font-weight: 500;

}


/* =========================================================
   INPUT WRAPPER
   SAME REGISTER STYLE
========================================================= */

.input-wrapper {

    position: relative;

    width: 100%;

    height: 58px;

    display: flex;

    align-items: center;

    border: 2px solid var(--border);

    border-radius: 16px;

    background: #ffffff;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;

}


.input-wrapper:hover {

    border-color: var(--border-hover);

    transform: translateY(-1px);

}


.input-wrapper:focus-within {

    border-color: var(--primary);

    box-shadow:
        0 0 0 5px
        rgba(79, 70, 229, 0.10);

    transform: translateY(-2px);

}


.input-wrapper input,
.input-wrapper select {

    width: 100%;
    height: 100%;

    border: none;
    outline: none;

    padding: 0 52px 0 18px;

    background: transparent;

    color: #33364e;

    font-family: inherit;

    font-size: 15px;

}


.input-wrapper input::placeholder {

    color: #b3b6c4;

}


.input-wrapper i {

    position: absolute;

    right: 18px;

    color: #7377c9;

    font-size: 17px;

    pointer-events: none;

}


/* =========================================================
   SELECT
========================================================= */

.select-wrapper select {

    appearance: none;

    cursor: pointer;

    color: #555a70;

}


.select-wrapper select:invalid {

    color: #b3b6c4;

}


/* =========================================================
   PHONE
========================================================= */

.phone-wrapper {

    padding-left: 13px;

}


.country-code {

    flex-shrink: 0;

    padding-right: 12px;

    border-right: 1px solid #e7e8f1;

    color: #555a70;

    font-size: 14px;

    font-weight: 600;

}


.phone-wrapper input {

    padding-left: 12px;

}


/* =========================================================
   FIELD HINT
========================================================= */

.field-hint {

    display: block;

    margin-top: 6px;

    color: #a1a5b5;

    font-size: 11px;

}


/* =========================================================
   TEXTAREA
========================================================= */

.textarea-wrapper {

    position: relative;

}


.textarea-wrapper textarea {

    width: 100%;

    min-height: 135px;

    resize: vertical;

    padding: 17px 18px 35px;

    border: 2px solid var(--border);

    border-radius: 16px;

    outline: none;

    background: #ffffff;

    color: #33364e;

    font-family: inherit;

    font-size: 15px;

    line-height: 1.6;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.textarea-wrapper textarea::placeholder {

    color: #b3b6c4;

}


.textarea-wrapper textarea:hover {

    border-color: var(--border-hover);

}


.textarea-wrapper textarea:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 5px
        rgba(79, 70, 229, 0.10);

}


.character-counter {

    position: absolute;

    right: 16px;
    bottom: 11px;

    color: #a1a5b5;

    font-size: 11px;

}


/* =========================================================
   OTP
========================================================= */

.otp-row {

    display: flex;

    align-items: center;

    gap: 10px;

}


.otp-row .input-wrapper {

    flex: 1;

}


.otp-button {

    height: 58px;

    padding: 0 17px;

    flex-shrink: 0;

    border: none;

    border-radius: 16px;

    background: var(--primary-soft);

    color: var(--primary);

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}


.otp-button:hover {

    background: #e1e4ff;

    transform: translateY(-2px);

}


.otp-button:disabled {

    opacity: 0.55;

    cursor: not-allowed;

    transform: none;

}


.otp-status {

    min-height: 17px;

    margin-top: 5px;

    color: var(--success);

    font-size: 11px;

}


/* =========================================================
   PROFILE UPLOAD
========================================================= */

.profile-upload {

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 12px;

    border: 2px dashed #dfe2f2;

    border-radius: 16px;

    background: #fcfcff;

    transition: 0.3s ease;

}


.profile-upload:hover {

    border-color: #bfc5ff;

    background: #fafaff;

}


.profile-preview {

    width: 82px;
    height: 82px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 16px;

    background: #eef1ff;

    color: #7377c9;

    font-size: 24px;

}


.profile-preview img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.profile-upload-content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 4px;

}


.profile-upload-content strong {

    color: #3f435d;

    font-size: 14px;

}


.profile-upload-content > span {

    color: #a1a5b5;

    font-size: 11px;

}


.upload-button {

    margin-top: 5px;

    padding: 8px 13px;

    border: none;

    border-radius: 9px;

    background: var(--primary-soft);

    color: var(--primary);

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;

}


.upload-button:hover {

    background: #dfe3ff;

    transform: translateY(-1px);

}


/* =========================================================
   LANGUAGE OPTIONS
========================================================= */

.language-options {

    display: flex;

    gap: 12px;

}


.choice-card {

    min-width: 135px;

    height: 58px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 0 13px;

    border: 2px solid var(--border);

    border-radius: 16px;

    background: #ffffff;

    color: #555a70;

    font-size: 13px;

    font-weight: 500;

    cursor: pointer;

    transition: 0.3s ease;

}


.choice-card input {

    accent-color: var(--primary);

}


.choice-card:hover {

    border-color: var(--border-hover);

}


.choice-card:has(input:checked) {

    border-color: var(--primary);

    background: #f7f7ff;

    color: var(--primary);

}


.choice-icon {

    color: #7377c9;

}


/* =========================================================
   SKILLS
========================================================= */

.skills-grid {

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 12px;

}


.skill-card {

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 0 10px;

    border: 2px solid var(--border);

    border-radius: 16px;

    background: #ffffff;

    color: #555a70;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}


.skill-card input {

    accent-color: var(--primary);

}


.skill-card:hover {

    border-color: var(--border-hover);

    transform: translateY(-1px);

}


.skill-card:has(input:checked) {

    border-color: var(--primary);

    background: var(--primary-soft);

    color: var(--primary);

}


/* =========================================================
   TEACHING LEVEL
========================================================= */

.level-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

}


.level-card {

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: 2px solid var(--border);

    border-radius: 16px;

    background: #ffffff;

    color: #555a70;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}


.level-card input {

    accent-color: var(--primary);

}


.level-card:hover {

    border-color: var(--border-hover);

}


.level-card:has(input:checked) {

    border-color: var(--primary);

    background: var(--primary-soft);

    color: var(--primary);

}


/* =========================================================
   STEP ACTIONS
========================================================= */

.step-actions {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 42px;

}


.single-action {

    justify-content: flex-end;

}


/* =========================================================
   PRIMARY BUTTON
   REGISTER STYLE
========================================================= */

.primary-button {

    min-width: 190px;

    height: 58px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #6d5cff
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    box-shadow: var(--button-shadow);

    transition: 0.35s ease;

}


.primary-button:hover:not(:disabled) {

    transform: translateY(-3px);

    box-shadow:
        0 25px 50px
        rgba(79, 70, 229, 0.35);

}


.primary-button:active:not(:disabled) {

    transform: scale(0.98);

}


.primary-button i {

    transition: 0.3s ease;

}


.primary-button:hover:not(:disabled) i {

    transform: translateX(5px);

}


/* DISABLED */

.primary-button:disabled {

    background: #d8d9e4;

    color: #989aaa;

    box-shadow: none;

    cursor: not-allowed;

    transform: none;

}


/* PROCESSING */

.primary-button.processing {

    cursor: wait;

    opacity: 0.9;

}


.primary-button.processing i {

    transform: none !important;

}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.secondary-button {

    min-width: 135px;

    height: 58px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border: 2px solid #ececf5;

    border-radius: 16px;

    background: #ffffff;

    color: #555a70;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}


.secondary-button:hover {

    border-color: #cfd5ff;

    color: var(--primary);

    transform: translateY(-2px);

}


/* =========================================================
   VALIDATION
========================================================= */

.input-wrapper.invalid,
.textarea-wrapper textarea.invalid {

    border-color: var(--danger) !important;

    background: #fffafa;

    box-shadow:
        0 0 0 4px
        rgba(239, 68, 68, 0.08);

}


.field-error {

    display: block;

    min-height: 17px;

    margin-top: 5px;

    color: var(--danger);

    font-size: 11px;

    line-height: 1.45;

}


.validation-blink {

    animation:
        validationBlink
        0.45s ease
        2;

}


@keyframes validationBlink {

    0%,
    100% {

        transform: translateX(0);

    }

    25% {

        transform: translateX(-5px);

    }

    75% {

        transform: translateX(5px);

    }

}


/* =========================================================
   REVIEW
========================================================= */

.review-section {

    margin-bottom: 22px;

    padding: 22px;

    border: 1px solid #ececf5;

    border-radius: 20px;

    background: #ffffff;

}


.review-section-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;

    padding-bottom: 15px;

    border-bottom: 1px solid #f0f0f6;

}


.review-section-header span {

    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


.review-section-header h4 {

    margin-top: 3px;

    color: #33364e;

    font-size: 17px;

}


.edit-button {

    height: 37px;

    padding: 0 13px;

    display: flex;

    align-items: center;

    gap: 7px;

    border: 1px solid #e0e2f0;

    border-radius: 10px;

    background: #ffffff;

    color: var(--primary);

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;

}


.edit-button:hover {

    border-color: #cfd5ff;

    background: var(--primary-soft);

}


.review-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;

}


.review-item {

    min-width: 0;

    padding: 14px 15px;

    border-radius: 13px;

    background: #f9f9fd;

}


.review-item.full-review {

    grid-column: 1 / -1;

}


.review-item span {

    display: block;

    margin-bottom: 5px;

    color: #999daf;

    font-size: 11px;

}


.review-item strong {

    display: block;

    overflow-wrap: anywhere;

    color: #3d4159;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.5;

}


/* =========================================================
   CONFIRMATION
========================================================= */

.confirmation-box {

    margin-top: 28px;

    padding: 17px 18px;

    border: 1px solid #e7e8f1;

    border-radius: 16px;

    background: #fafaff;

}


.confirmation-label {

    display: flex;

    align-items: center;

    gap: 11px;

    color: #555a70;

    font-size: 13px;

    font-weight: 500;

    cursor: pointer;

}


.confirmation-label input {

    position: absolute;

    opacity: 0;

    pointer-events: none;

}


.custom-check {

    width: 20px;
    height: 20px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #d1d4e1;

    border-radius: 6px;

    background: #ffffff;

    transition: 0.25s ease;

}


.confirmation-label input:checked + .custom-check {

    border-color: var(--primary);

    background: var(--primary);

}


.confirmation-label input:checked + .custom-check::after {

    content: "✓";

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

}


/* =========================================================
   CELEBRATION LAYER
========================================================= */

.celebration-layer {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(109, 92, 255, 0.20),
            rgba(20, 22, 65, 0.96)
        );

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;

}


.celebration-layer.show {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* =========================================================
   CELEBRATION BURST
========================================================= */

.celebration-burst {

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.30),
            rgba(109,92,255,0.08),
            transparent 70%
        );

    animation:
        celebrationPulse
        2s ease-in-out
        infinite;

}


@keyframes celebrationPulse {

    0%,
    100% {

        transform: scale(0.8);

        opacity: 0.55;

    }

    50% {

        transform: scale(1.25);

        opacity: 1;

    }

}


/* =========================================================
   BALLOONS
========================================================= */

.balloon {

    position: absolute;

    width: 58px;
    height: 72px;

    border-radius:
        50%
        50%
        45%
        45%;

    opacity: 0.95;

    animation:
        balloonFloat
        4s
        ease-in-out
        infinite;

}


.balloon::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 70px;

    width: 1px;

    height: 100px;

    background:
        rgba(255,255,255,0.65);

}


.balloon-1 {

    left: 8%;
    bottom: -90px;

    background: #6d5cff;

    animation-delay: 0s;

}


.balloon-2 {

    left: 22%;
    bottom: -130px;

    background: #4f46e5;

    animation-delay: 0.8s;

}


.balloon-3 {

    left: 38%;
    bottom: -100px;

    background: #ff6b9d;

    animation-delay: 1.4s;

}


.balloon-4 {

    right: 36%;
    bottom: -110px;

    background: #ffd166;

    animation-delay: 0.5s;

}


.balloon-5 {

    right: 20%;
    bottom: -90px;

    background: #54c6ff;

    animation-delay: 1.1s;

}


.balloon-6 {

    right: 7%;
    bottom: -130px;

    background: #8b5cf6;

    animation-delay: 1.8s;

}


@keyframes balloonFloat {

    0% {

        transform:
            translateY(0)
            rotate(-4deg);

    }

    50% {

        transform:
            translateY(-55vh)
            rotate(5deg);

    }

    100% {

        transform:
            translateY(-115vh)
            rotate(-4deg);

    }

}


/* =========================================================
   CELEBRATION MESSAGE
========================================================= */

.celebration-message {

    position: relative;

    z-index: 5;

    width: min(560px, 88%);

    padding: 42px 35px;

    text-align: center;

    border: 1px solid
        rgba(255,255,255,0.16);

    border-radius: 28px;

    background:
        rgba(255,255,255,0.10);

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 100px
        rgba(0,0,0,0.30);

    transform:
        translateY(25px)
        scale(0.95);

    opacity: 0;

    transition:
        transform 0.8s ease,
        opacity 0.8s ease;

}


.celebration-layer.show
.celebration-message {

    transform:
        translateY(0)
        scale(1);

    opacity: 1;

}


.celebration-check {

    width: 72px;
    height: 72px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #6d5cff
        );

    color: #ffffff;

    font-size: 34px;

    font-weight: 700;

    box-shadow:
        0 15px 45px
        rgba(79,70,229,0.40);

}


.celebration-small {

    color: #bfc4ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.7px;

}


.celebration-message h2 {

    margin-top: 9px;

    color: #ffffff;

    font-size: clamp(27px, 4vw, 39px);

    line-height: 1.2;

}


.celebration-message p {

    margin-top: 10px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;

}


/* =========================================================
   CONFETTI
========================================================= */

.confetti-container {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

}


.confetti-piece {

    position: absolute;

    top: -30px;

    width: 10px;
    height: 10px;

    animation:
        confettiFall
        linear
        forwards;

}


.confetti-piece.square {

    border-radius: 2px;

    background: #6d5cff;

}


.confetti-piece.circle {

    border-radius: 50%;

    background: #ffd166;

}


.confetti-piece.strip {

    width: 6px;
    height: 18px;

    border-radius: 3px;

    background: #54c6ff;

}


@keyframes confettiFall {

    from {

        transform:
            translateY(-40px)
            translateX(0)
            rotate(0deg);

        opacity: 1;

    }

    to {

        transform:
            translateY(110vh)
            translateX(var(--drift))
            rotate(var(--rotate));

        opacity: 0;

    }

}


/* =========================================================
   PENDING REVIEW SCREEN
========================================================= */

.instructor-pending-screen {

    position: fixed;

    inset: 0;

    z-index: 9000;

    overflow-y: auto;

    padding: 50px 20px;

    background:
        radial-gradient(
            circle at top left,
            rgba(79,70,229,0.12),
            transparent 35%
        ),
        #f8f9ff;

}


.pending-card {

    width: min(760px, 100%);

    margin: 0 auto;

    padding: 45px;

    text-align: center;

    border: 1px solid #ececf5;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 30px 90px
        rgba(40,45,100,0.12);

    animation:
        pendingPopup
        0.7s ease;

}


@keyframes pendingPopup {

    from {

        opacity: 0;

        transform:
            translateY(30px)
            scale(0.96);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


.pending-icon {

    width: 76px;
    height: 76px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 29px;

}


.pending-kicker {

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.pending-card h2 {

    margin-top: 9px;

    color: #20233d;

    font-size: clamp(25px, 4vw, 36px);

    line-height: 1.25;

}


.pending-description {

    max-width: 620px;

    margin: 14px auto 30px;

    color: #85899d;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   PENDING TIMELINE
========================================================= */

.pending-timeline {

    display: grid;

    gap: 12px;

    text-align: left;

    margin-bottom: 25px;

}


.pending-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px;

    border: 1px solid #eeeeF6;

    border-radius: 16px;

    background: #fafaff;

}


.pending-number {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

}


.pending-item strong {

    display: block;

    color: #3b3f58;

    font-size: 13px;

}


.pending-item span {

    display: block;

    margin-top: 3px;

    color: #9699aa;

    font-size: 11px;

    line-height: 1.5;

}


/* =========================================================
   PENDING STATUS
========================================================= */

.pending-status {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 25px;

    padding: 17px;

    text-align: left;

    border: 1px solid #dddfff;

    border-radius: 16px;

    background: #f7f7ff;

}


.pending-spinner {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #ffffff;

    color: var(--primary);

}


.pending-status strong {

    display: block;

    color: #41445d;

    font-size: 13px;

}


.pending-status span {

    display: block;

    margin-top: 3px;

    color: #9296a9;

    font-size: 11px;

}


.pending-note {

    margin-top: 20px;

    color: #9a9eae;

    font-size: 11px;

    line-height: 1.6;

}


.pending-home-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    height: 52px;

    margin-top: 24px;

    padding: 0 22px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #6d5cff
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 15px 35px
        rgba(79,70,229,0.25);

    transition: 0.3s ease;

}


.pending-home-button:hover {

    transform: translateY(-2px);

}


/* =========================================================
   PREMIUM ALERT
========================================================= */

.fv-alert-overlay {

    position: fixed;

    inset: 0;

    z-index: 11000;

    background:
        rgba(15, 18, 45, 0.45);

    opacity: 0;

    visibility: hidden;

    transition: 0.3s ease;

}


.fv-alert {

    position: fixed;

    top: 50%;
    left: 50%;

    z-index: 11001;

    width: min(420px, 90%);

    padding: 30px;

    text-align: center;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 30px 90px
        rgba(20,25,70,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, -45%)
        scale(0.95);

    transition: 0.3s ease;

}


.fv-alert.show,
.fv-alert-overlay.show {

    opacity: 1;

    visibility: visible;

}


.fv-alert.show {

    transform:
        translate(-50%, -50%)
        scale(1);

}


.fv-alert-icon {

    width: 58px;
    height: 58px;

    margin: 0 auto 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #fff1f2;

    color: #ef4444;

    font-size: 23px;

}


.fv-alert h3 {

    color: #292c48;

    font-size: 20px;

}


.fv-alert p {

    margin-top: 7px;

    color: #8e92a4;

    font-size: 13px;

    line-height: 1.6;

}


.fv-alert-btn {

    width: 100%;

    height: 50px;

    margin-top: 22px;

    border: none;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #6d5cff
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 8px;

}


::-webkit-scrollbar-track {

    background: #f1f1f5;

}


::-webkit-scrollbar-thumb {

    background: #6d5cff;

    border-radius: 20px;

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 850px) {

    .instructor-onboarding {

        width: 94%;

        padding:
            35px
            35px
            45px;

    }


    .form-grid {

        column-gap: 20px;

    }


    .skills-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .instructor-onboarding {

        width: 94%;

        margin:
            15px auto
            30px;

        padding:
            25px
            20px
            35px;

        border-radius: 24px;

    }


    .onboarding-header {

        margin-bottom: 38px;

    }


    .secure-badge span {

        display: none;

    }


    .brand-logo {

        width: 44px;
        height: 44px;

    }


    .brand-text h1 {

        font-size: 16px;

    }


    .onboarding-intro {

        margin-bottom: 32px;

    }


    .onboarding-intro h2 {

        font-size: 29px;

    }


    .onboarding-intro p {

        font-size: 12px;

    }


    .step-progress {

        margin:
            0 0 45px;

    }


    .step-number {

        width: 35px;
        height: 35px;

        font-size: 10px;

    }


    .step-progress {

        gap: 0;

    }


    .progress-line {

        top: 17px;

    }


    .step-item span {

        max-width: 75px;

        font-size: 9px;

    }


    .step-heading {

        align-items: flex-start;

        margin-bottom: 27px;

    }


    .step-heading-icon {

        width: 52px;
        height: 52px;

        border-radius: 15px;

        font-size: 20px;

    }


    .step-heading h3 {

        font-size: 21px;

    }


    .step-heading p {

        font-size: 11px;

    }


    .form-grid {

        grid-template-columns: 1fr;

        row-gap: 19px;

    }


    .full-width {

        grid-column: auto;

    }


    .form-group > label {

        font-size: 13px;

    }


    .input-wrapper {

        height: 54px;

    }


    .otp-row {

        align-items: stretch;

    }


    .otp-button {

        height: 54px;

        padding: 0 12px;

    }


    .profile-upload {

        align-items: flex-start;

    }


    .profile-preview {

        width: 72px;
        height: 72px;

    }


    .skills-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .level-grid {

        grid-template-columns: 1fr;

    }


    .language-options {

        flex-direction: column;

    }


    .choice-card {

        width: 100%;

    }


    .step-actions {

        flex-direction: column-reverse;

        align-items: stretch;

    }


    .primary-button,
    .secondary-button {

        width: 100%;

    }


    .review-grid {

        grid-template-columns: 1fr;

    }


    .review-item.full-review {

        grid-column: auto;

    }


    .pending-card {

        padding: 30px 20px;

        border-radius: 24px;

    }


    .pending-item {

        align-items: flex-start;

    }


    .celebration-message {

        padding:
            34px
            22px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .skills-grid {

        grid-template-columns: 1fr;

    }


    .onboarding-intro h2 {

        font-size: 26px;

    }


    .step-item span {

        font-size: 8px;

    }


    .profile-upload {

        flex-direction: column;

    }


    .profile-upload-content {

        width: 100%;

    }


    .pending-status {

        align-items: flex-start;

    }

}