
:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --cyan: #06b6d4;

    --navy: #071426;
    --text: #172033;
    --muted: #64748b;

    --white: #ffffff;

    --border: #e2e8f0;

    --danger: #ef4444;
    --success: #10b981;

    --radius: 22px;

    --shadow:
        0 25px 70px rgba(15,23,42,.10);
}


* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    font-family:
        "Inter",
        "Noto Sans Bengali",
        sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            135deg,
            #eef6ff,
            #f8fbff,
            #effcff
        );

    overflow-x: hidden;

}


/* ==========================================
   BACKGROUND
========================================== */

.background-effects {

    position: fixed;

    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;

}


.gradient-orb {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .18;

    animation:
        orbMove 15s ease-in-out infinite alternate;

}


.orb-1 {

    background: #2563eb;

    left: -200px;
    top: -200px;

}


.orb-2 {

    background: #06b6d4;

    right: -200px;
    top: 30%;

    animation-delay: -4s;

}


.orb-3 {

    background: #6366f1;

    bottom: -250px;
    left: 35%;

    animation-delay: -8s;

}


@keyframes orbMove {

    from {

        transform:
            translate(0,0)
            scale(1);

    }

    to {

        transform:
            translate(80px,-60px)
            scale(1.15);

    }

}


/* ==========================================
   WRAPPER
========================================== */

.application-wrapper {

    width:
        min(1120px, calc(100% - 30px));

    margin:
        25px auto 60px;

}


/* ==========================================
   TOPBAR
========================================== */

.topbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-logo {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(37,99,235,.25);
    animation:  logoFloat 4s ease-in-out infinite;

}


@keyframes logoFloat {

    50% {

        transform:
            translateY(-5px);

    }

}


.brand h1 {
    font-size: 18px;
    font-weight: 800;
    font-family: EncodeB;
}


.brand p {
    color: var(--muted);
    font-size: 15px;
    font-family: LatoB;
}


.institute-info {
    display: flex;
    gap: 18px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    font-family: NotoL;
}


.institute-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.institute-info a{
    text-decoration:none;
}

.institute-info i {

    color: var(--primary);

}


/* ==========================================
   HERO
========================================== */

.hero {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 310px;

    padding:
        50px 60px;

    overflow: hidden;

    border-radius: 30px;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(6,182,212,.3),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061326,
            #0c2c63,
            #075985
        );

    box-shadow:
        0 30px 80px rgba(7,20,38,.28);

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

}


.status-pill {
    font-family: 'EncodeB';
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 100px;
    background: rgba(255,255,255,.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #34d399;

    box-shadow:
        0 0 0 5px rgba(52,211,153,.12);

    animation:
        pulse 2s infinite;

}


@keyframes pulse {

    50% {

        box-shadow:
            0 0 0 9px rgba(52,211,153,0);

    }

}

.hero h2 {
    font-family: 'Roboto';
    margin-top: 16px;
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: bolder;
}


.hero h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #67e8f9,
            #93c5fd
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.hero-content > p {
    font-family: 'NotoL';
    max-width: 580px;
    margin-top: 18px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.8;
}


.hero-details {

    display: flex;

    gap: 25px;

    margin-top: 25px;

}


.hero-details div {

    display: flex;

    align-items: center;

    gap: 9px;

}


.hero-details i {

    color: #67e8f9;

}


.hero-details span {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    font-family: 'NotoL';
}


.hero-details strong {
    display: block;
    margin-top: 3px;
    color: white;
    font-size: 14px;
    font-family: 'LatoB';
}


/* ==========================================
   HERO VISUAL
========================================== */

.hero-visual {

    position: relative;

    width: 300px;
    height: 230px;

}


.visual-circle {

    position: absolute;

    top: 30px;
    left: 65px;

    width: 170px;
    height: 170px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    color: white;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(15px);

    font-size: 55px;

    box-shadow:
        inset 0 0 50px rgba(255,255,255,.05),
        0 30px 70px rgba(0,0,0,.2);

    animation:
        visualFloat 5s ease-in-out infinite;

}


@keyframes visualFloat {

    50% {

        transform:
            translateY(-12px)
            rotate(3deg);

    }

}


.floating-item {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 12px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(12px);

    font-size: 10px;

    font-weight: 700;

    animation:
        itemFloat 4s ease-in-out infinite;

}


.floating-item i {

    color: #67e8f9;

}

.item-1 {
    top: 5px;
    left: 0;
    font-size: 13px;
    font-family: 'LatoB';
    font-weight: 100;
}


.item-2 {
    top: 75px;
    right: 0;
    animation-delay:-1.3s;
    font-size: 13px;
    font-family: 'LatoB';
    font-weight: 100;
}

.item-3 {
    bottom: 0;
    left: 15px;
    animation-delay:-2.5s;
    font-size: 13px;
    font-family: 'LatoB';
    font-weight: 100;
}


@keyframes itemFloat {

    50% {

        transform:
            translateY(-8px);

    }

}


/* ==========================================
   STEP PROGRESS
========================================== */

.step-progress {
    position: relative;
    margin: 40px 10px 25px;
}

.progress-track {
    position: absolute;
    top: 23px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: #dbeafe;
}


#progressBar {
    width: 0%;
    height: 100%;
    background: linear-gradient( 90deg, var(--primary), var(--cyan) );
    transition: width .5s ease;
}


.steps {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.step span {
    font-family: KohoB;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 5px solid #fff;
    border-radius: 50%;
    color: #64748b;
    background: #eaf2ff;
    box-shadow: 0 5px 20px rgba(15,23,42,.08);
    font-size: 10px;
    font-weight: 800;
    transition: .35s ease;
}

.step small {
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.step.active span {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--cyan)
        );

    box-shadow:
        0 8px 25px rgba(37,99,235,.3);

    transform:
        scale(1.08);

}


.step.active small {

    color:
        var(--primary);

}


/* ==========================================
   FORM STEP
========================================== */

.form-step {

    display: none;

    padding:
        34px;

    border:
        1px solid rgba(255,255,255,.85);

    border-radius:
        var(--radius);

    background:
        rgba(255,255,255,.82);

    backdrop-filter:
        blur(20px);

    box-shadow:
        var(--shadow);

    animation:
        stepIn .5s ease;

}


.form-step.active {

    display: block;

}


@keyframes stepIn {

    from {

        opacity: 0;

        transform:
            translateX(25px)
            scale(.99);

    }

    to {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);

    }

}


/* ==========================================
   HEADING
========================================== */

.step-heading {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 28px;

}


.step-icon {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 14px;

    color:
        var(--primary);

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #ecfeff
        );

}


.step-heading span {

    color:
        var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.step-heading h3 {
    font-family: 'EncodeB';
    margin-top: 3px;
    font-size: 21px;
    font-weight: 800;
}


.step-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-family: 'Lato';
}


/* ==========================================
   INFO
========================================== */
.info-banner, .ssc-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #dbeafe;
    color: red;
    font-size: 14px;
    line-height: 1.7;
    background: #dcf2f59e;
}

.info-banner i {

    margin-top: 3px;

}


/* ==========================================
   FORM GRID
========================================== */

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 20px;

}


.field.full {

    grid-column:
        1 / -1;

}

.field label {
    font-family: 'Noto';
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 12px;
}


.field label b {

    color:
        var(--danger);

}


.input-wrap,
.select-wrap {

    position: relative;

}


.input-wrap > i,
.select-wrap > i {

    position: absolute;

    top: 50%;
    left: 15px;

    z-index: 2;

    transform:
        translateY(-50%);

    color:
        #94a3b8;

    pointer-events: none;

    transition:
        .3s ease;

}


.input-wrap input, .select-wrap select {
    width: 100%;
    height: 52px;
    padding: 0 15px 0 44px;
    border: 1px solid var(--border);
    border-radius: 13px;
    outline: none;
    color: #1d4ed8;
    background: rgba(255,255,255,.75);
    font-family: 'NotoB';
    font-size: 14px;
    transition: .3s ease;
}
select option{
    color:green !important;
}


.input-wrap input::placeholder{
    font-family:'Noto';
    font-size:13px;
    color:#8f959f;
    font-weight:none !important;
}
.input-wrap input:focus{
    color:red;
    font-family:'EncodeB';
    font-size:16px;
}


.input-wrap input:focus,
.select-wrap select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow:
        0 0 0 4px rgba(37,99,235,.08);
}


.input-wrap:focus-within > i,
.select-wrap:focus-within > i {

    color:
        var(--primary);

}


.select-wrap select {

    appearance: none;

    cursor: pointer;

}


.select-wrap::after {

    content: "\f107";

    position: absolute;

    top: 50%;
    right: 16px;

    transform:
        translateY(-50%);

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    color:
        #94a3b8;

    pointer-events: none;

}


.field small {
    font-family: 'Noto';
    display: block;
    margin-top: 6px;
    color: #ff0000;
    font-size: 13px;
}


/* ==========================================
   RADIO
========================================== */

.radio-group {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 9px;

}


.radio-option {

    cursor: pointer;

}


.radio-option input {

    display: none;

}

.radio-option span {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #2563eb63;
    border-radius: 13px;
    color: #64748b;
    background: rgba(255,255,255,.7);
    font-size: 14px;
    transition: .3s ease;
}


.radio-option:hover span {

    transform:
        translateY(-2px);

    border-color:
        #bfdbfe;

}


.radio-option input:checked + span {

    color:
        var(--primary);

    border-color:
        var(--primary);

    background:
        #eff6ff;

}


/* ==========================================
   COURSE
========================================== */

.course-selection {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 16px;

}


.course-option {

    cursor: pointer;

}


.course-option input {

    display: none;

}


.course-content {

    position: relative;

    height: 100%;

    padding: 21px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255,255,255,.65);

    transition:
        .35s ease;

}


.course-content::after {

    content:
        "\f058";

    position: absolute;

    top: 16px;
    right: 16px;

    color:
        #dbeafe;

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 18px;

}


.course-option:hover .course-content {

    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px rgba(37,99,235,.1);

}


.course-option input:checked + .course-content {

    border-color:
        var(--primary);

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f0fdff
        );

    box-shadow:
        0 15px 35px rgba(37,99,235,.12);

}


.course-option input:checked
+ .course-content::after {

    color:
        var(--primary);

}


.course-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    margin-bottom: 12px;

    color:
        var(--primary);

    border-radius: 13px;

    background:
        #dbeafe;

}


.course-content h4 {
    font-family: 'EncodeB';
    font-size: 15px;
    color: #ff0000;
}

.course-content p {
    margin-top: 1px;
    color: var(--muted);
    font-size: 11px;
    font-family: 'Noto';
}


.course-content > span {

    display: block;

    margin-top: 13px;

    color:
        var(--primary);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

}


/* ==========================================
   SSC
========================================== */

.ssc-notice {
    font-family: 'SolaimanLipi','NotoB';
    color: #fd0000;
    background: linear-gradient(
            135deg,
            #fff7ed,
            #fffbeb
        );
    border-color: #fed7aa;
}


.ssc-notice i {

    color:
        #f59e0b;

}


/* ==========================================
   PHOTO
========================================== */

.photo-section {

    position: relative;

    min-height: 220px;

}


.upload-area {

    min-height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    cursor: pointer;

    padding: 25px;

    border:
        2px dashed #bfdbfe;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ecfeff
        );

    transition:
        .3s ease;

}


.upload-area:hover {

    border-color:
        var(--primary);

    transform:
        scale(1.005);

}


.upload-icon {

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    margin-bottom: 13px;

    border-radius: 18px;

    color:
        var(--primary);

    background:
        white;

    box-shadow:
        0 10px 30px rgba(37,99,235,.1);

    font-size: 22px;

    animation:
        uploadFloat 3s infinite ease-in-out;

}


@keyframes uploadFloat {

    50% {

        transform:
            translateY(-5px);

    }

}


.upload-area h4 {

    font-size: 14px;

}


.upload-area p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}


.upload-area p strong {

    color:
        var(--primary);

}

.upload-area > span {
    margin-top: 9px;
    color: #94a3b8;
    font-size: 11px;
}

.photo-preview {

    display: none;

    position: relative;

    width: fit-content;

    margin: auto;

}


.photo-preview.active {

    display: block;

}


.photo-preview img {

    width: 160px;
    height: 200px;

    object-fit: cover;

    border:
        5px solid white;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(15,23,42,.15);

}


.photo-preview button {

    position: absolute;

    top: -8px;
    right: -8px;

    width: 30px;
    height: 30px;

    border: 0;

    border-radius: 50%;

    color: white;

    background:
        var(--danger);

    cursor: pointer;

}


/* ==========================================
   DECLARATION
========================================== */

.declaration {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 17px;
    border: 1px solid #ff23005e;
    border-radius: 15px;
    cursor: pointer;
    background: #f8fafc;
}


.declaration input {

    display: none;

}


.checkmark {

    width: 22px;
    height: 22px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border:
        2px solid #cbd5e1;

    border-radius: 7px;

    color: white;

}


.checkmark i {

    opacity: 0;

    font-size: 10px;

}


.declaration input:checked
+ .checkmark {

    border-color:
        var(--primary);

    background:
        var(--primary);

}


.declaration input:checked
+ .checkmark i {

    opacity: 1;

}


.declaration p {
    font-family: 'Noto';
    color: #ff0000;
    line-height: 1.7;
    font-size: 14px;
}


/* ==========================================
   ACTION BUTTONS
========================================== */

.step-actions {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid #e2e8f0;

}


.back-btn, .next-btn, .reset-btn, .submit-btn {
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 13px;
    font-family: 'NotoB';
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: .3s ease;
}


/* BACK */

.back-btn {
    color: #ff5e00;
    background: white;
    border: 1px solid #e78b0091;
}

.back-btn:hover {

    color:
        var(--primary);

    border-color:
        #bfdbfe;

    transform:
        translateX(-3px);

}


/* NEXT */

.next-btn {
    font-family: 'NotoB';
    position: relative;
    overflow: hidden;
    color: white;
    font-size: 14px;
    border: 0;
    background: linear-gradient(
            100deg,
            #1d4ed8,
            #2563eb,
            #0891b2
        );
    background-size: 200% 100%;
    box-shadow: 0 12px 28px rgba(37,99,235,.25);
}


.next-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 35px rgba(37,99,235,.3);

}


.next-btn i {

    transition:
        .3s ease;

}


.next-btn:hover i {

    transform:
        translateX(5px);

}


/* RESET */

.reset-btn {

    color:
        #64748b;

    background:
        white;

    border:
        1px solid var(--border);

}


.reset-btn:hover {

    color:
        #dc2626;

    border-color:
        #fecaca;

    background:
        #fff7f7;

}


.reset-btn:hover i {

    transform:
        rotate(-180deg);

}


/* SUBMIT */

.submit-btn {

    position: relative;

    overflow: hidden;

    color: white;

    border: 0;

    background:
        linear-gradient(
            100deg,
            #059669,
            #10b981,
            #0ea5e9
        );

    box-shadow:
        0 12px 30px rgba(16,185,129,.25);

}


.submit-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px rgba(16,185,129,.3);

}


.shine {

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    transform:
        skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.3),
            transparent
        );

    animation:
        shine 4s infinite;

}


@keyframes shine {

    30%,100% {

        left: 140%;

    }

}


/* ==========================================
   VALIDATION
========================================== */

.field.invalid input,
.field.invalid select {

    border-color:
        var(--danger) !important;

    box-shadow:
        0 0 0 4px rgba(239,68,68,.08);

}


.field.invalid {

    animation:
        shake .3s ease;

}


@keyframes shake {

    25% {

        transform:
            translateX(-4px);

    }

    75% {

        transform:
            translateX(4px);

    }

}


/* ==========================================
   FOOTER
========================================== */

footer {
    padding: 25px 5px;
    color:  #64748b;
    text-align:  center;
    background: white;
    margin-top: 10px;
    border-radius: 6px;

}


.footer-brand {
    font-size: 14px;
    font-family: 'NotoB';
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    color: #1d4ed8;
}

.footer-brand i {

    color:
        var(--primary);

}


footer p {
    font-size: 13px;
    color: #606464;
    font-family: 'Noto';
}

footer > span {
    display: block;
    font-family: 'Noto';
    font-size: 13px;
    color: #64748b;
}


/* ==========================================
   TOAST
========================================== */

.toast {

    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        14px 18px;

    color: white;

    background:
        #0f172a;

    border-radius:
        12px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.2);

    font-size: 10px;

    opacity: 0;

    transform:
        translateY(20px);

    pointer-events:
        none;

    transition:
        .35s ease;

}


.toast.show {

    opacity: 1;

    transform:
        translateY(0);

}


.toast i {
    color: #fbbf24;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 800px) {

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 8px auto;
    }
    .institute-info span {
        display: none;
    } 
    .step-actions .next-btn {
        flex: 1;
        padding: 22px 15px;
    }
    .application-wrapper {
        width: calc(100% - 18px);
        margin-top: 12px;

    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .institute-info {
        width: 100%;
        justify-content:space-between;
        gap: 8px;
        font-size: 9px;

    }

    .hero {
        min-height: auto;
        padding: 35px 24px;
    }

    .hero-visual {
        display: none;

    }

    .hero h2 {
        font-size: 40px;
    }

    .hero-details {
        flex-direction:column;
        gap: 10px;
    }

    .step-progress {
        margin: 30px 2px 20px;
    }

    .step span {
        width: 38px;
        height: 38px;
        font-size: 8px;

    }

    .progress-track {
        top: 19px;
    }

    .step small {
        font-size: 7px;
    }

    .form-step {
        padding: 22px 17px;
        border-radius: 19px;
    }


    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column:auto;
    }

    .course-selection {
        grid-template-columns: 1fr;
    }

    .step-actions {
        justify-content: stretch;
    }


    .step-actions .next-btn {
        flex: 1;
    }

    .final-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;

    }

    .final-actions .submit-btn {
        grid-column: 1 / -1;
        order: -1;
    }


    .final-actions .back-btn,
    .final-actions .reset-btn {

        width:
            100%;

    }

}


@media (max-width: 430px) {
    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 8px auto;
    }
    .institute-info span {
        display: none;
    }
    .step-actions .next-btn {
        flex: 1;
        padding: 22px 15px;
    }
    
    .brand h1 {
        font-size: 15px;
    }

    .institute-info {
        align-items: flex-start;
        flex-direction:  column;
    }

    .hero h2 {
        font-size: 34px;
    }

    .steps {
        justify-content: space-between;
    }

    .step small {
        display: none;
    }

    .progress-track {
        left: 6%;
        width: 88%;
    }

    .radio-group {
        grid-template-columns:1fr;
    }

    .step-actions {
        flex-direction: column-reverse;
    }

    .step-actions button {
        width: 100%;
    }

    .final-actions {
        display: flex;
        flex-direction: column;
    }

    .final-actions .submit-btn {
        order: 0;
    }

}