/*=========================================================
    MIT SCHOOL OF DESIGN
    PREMIUM ADMISSION SECTION
    PART 3A
=========================================================*/

:root{

    --primary:#f15a24;
    --secondary:#ff9800;

    --dark:#1f2937;

    --text:#5f6775;

    --light:#ffffff;

    --border:#ececec;

    --bg:#f7f9fc;

    --radius:24px;

    --transition:.35s;

    --shadow:
        0 20px 60px rgba(0,0,0,.08);

}

/*========================================*/

.mitreg-section{

    position:relative;

    padding:100px 0;

    background:
        linear-gradient(
            180deg,
            #fbfcfe 0%,
            #f4f7fb 100%
        );

    overflow:hidden;

    font-family:
        "Montserrat",
        sans-serif;

}

/*========================================*/

.mitreg-bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(10px);

    z-index:0;

}

.mitreg-bg-circle.one{

    width:420px;

    height:420px;

    background:

        rgba(241,90,36,.05);

    top:-180px;

    left:-120px;

}

.mitreg-bg-circle.two{

    width:320px;

    height:320px;

    background:

        rgba(255,152,0,.05);

    right:-80px;

    bottom:-100px;

}

/*========================================*/

.mitreg-container{

    width:92%;

    max-width:1400px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*========================================*/

.mitreg-wrapper{

    display:grid;

    grid-template-columns:

        minmax(0,1fr)

        520px;

    gap:70px;

    align-items:center;

}

/*========================================*/

.mitreg-left{

    position:relative;

}

/*========================================*/

.mitreg-heading{

    margin-bottom:50px;

}

/*========================================*/

.mitreg-tag{

    display:inline-flex;

    align-items:center;

    padding:

        10px 22px;

    background:

        rgba(241,90,36,.08);

    color:

        var(--primary);

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.6px;

    text-transform:uppercase;

    margin-bottom:20px;

}

/*========================================*/

.mitreg-heading h2{

    font-size:52px;

    line-height:1.15;

    color:

        var(--dark);

    margin:0 0 20px;

    font-weight:800;

}

/*========================================*/

.mitreg-heading h2 span{

    color:#000000;

}

/*========================================*/

.mitreg-heading p{

    max-width:720px;

    font-size:18px;

    color:

        var(--text);

    line-height:34px;

}

/*========================================*/

.mitreg-features{

    display:flex;

    flex-direction:column;

    gap:22px;

}

/*========================================*/

.mitreg-feature-card{

    display:flex;

    align-items:flex-start;

    gap:22px;

    background:

        var(--light);

    border-radius:

        var(--radius);

    padding:28px;

    border:1px solid

        rgba(0,0,0,.04);

    box-shadow:

        0 10px 35px rgba(0,0,0,.05);

    transition:

        var(--transition);

}

/*========================================*/

.mitreg-feature-card:hover{

    transform:

        translateY(-6px);

    box-shadow:

        0 25px 55px rgba(0,0,0,.10);

}

/*========================================*/

.mitreg-icon{

    width:78px;

    height:78px;

    min-width:78px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:

        0 10px 30px rgba(241,90,36,.30);

}

/*========================================*/

.mitreg-icon svg{

    width:42px;

    height:42px;

}

/*========================================*/

.mitreg-content{

    flex:1;

}

/*========================================*/

.mitreg-content h3{

    margin:0 0 12px;

    font-size:23px;

    color:

        var(--dark);

    font-weight:700;

}

/*========================================*/

.mitreg-content p{

    margin:0;

    font-size:16px;

    color:

        var(--text);

    line-height:30px;

}

/*========================================*/

.mitreg-stats{

    display:grid;

    grid-template-columns:

        repeat(3,1fr);

    gap:20px;

    margin-top:45px;

}

/*========================================*/

.mitreg-stat{

    background:

        #ffffff;

    padding:28px;

    text-align:center;

    border-radius:22px;

    border:1px solid

        rgba(0,0,0,.04);

    box-shadow:

        0 10px 35px rgba(0,0,0,.05);

    transition:.35s;

}

/*========================================*/

.mitreg-stat:hover{

    transform:

        translateY(-5px);

}

/*========================================*/

.mitreg-stat h2{

    margin:0;

    color:

        var(--primary);

    font-size:34px;

    font-weight:800;

}

/*========================================*/

.mitreg-stat span{

    display:block;

    margin-top:10px;

    color:

        var(--text);

    font-size:15px;

    font-weight:600;

}

/*========================================*/

.mitreg-right{

    position:relative;

}

/*========================================*/

.mitreg-card{

    position:relative;

    background:#ffffff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:

        0 30px 80px rgba(0,0,0,.12);

}

/*========================================*/

.mitreg-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:

        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

}

/*========================================*/

.mitreg-card-header{

    position:relative;

    padding:45px;

    text-align:center;

    color:#ffffff;

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

}

.mitreg-card-header h2{
	color:#000000;
}

/*========================================*/

.mitreg-badge{

    display:inline-block;

    padding:9px 18px;

    background:

        rgba(255,255,255,.18);

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

/*========================================*/

.mitreg-card-header h2{

    margin:0;

    font-size:34px;

    font-weight:800;

}

/*========================================*/

.mitreg-card-header p{

    margin-top:12px;

    font-size:16px;

    opacity:.95;

    line-height:28px;

}



/*=========================================================
    MITSD ADMISSION FORM
    PART 3B-1
=========================================================*/

/* ==========================
   FORM BODY
========================== */

.mitreg-form{
    padding:40px;
}

/* ==========================
   FORM ROW
========================== */

.mitreg-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:22px;
}

.mitreg-field{
    position:relative;
    display:flex;
    flex-direction:column;
}

/* Full width field */

.mitreg-form > .mitreg-field{
    margin-bottom:22px;
}

/* ==========================
   LABEL
========================== */

.mitreg-field label{

    font-size:14px;

    font-weight:700;

    color:#2b2b2b;

    margin-bottom:10px;

    transition:.3s;

}

/* ==========================
   INPUT
========================== */

.mitreg-field input,
.mitreg-field select{

    width:100%;

    height:58px;

    border:2px solid #ececec;

    border-radius:16px;

    background:#fafafa;

    padding:0 18px;

    font-size:15px;

    color:#333;

    transition:.35s;

    outline:none;

    box-sizing:border-box;

    font-family:inherit;

}

/* ==========================
   PLACEHOLDER
========================== */

.mitreg-field input::placeholder{

    color:#bcbcbc;

}

/* ==========================
   SELECT
========================== */

.mitreg-field select{

    cursor:pointer;

    padding-right:50px;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 6 5-6' stroke='%23f15a24' stroke-width='2' fill='none'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

}

/* ==========================
   DATE
========================== */

.mitreg-field input[type="date"]{

    cursor:pointer;

}

/* ==========================
   HOVER
========================== */

.mitreg-field input:hover,
.mitreg-field select:hover{

    border-color:#ffb38f;

    background:#fff;

}

/* ==========================
   FOCUS
========================== */

.mitreg-field input:focus,
.mitreg-field select:focus{

    border-color:#f15a24;

    background:#ffffff;

    box-shadow:

        0 0 0 5px rgba(241,90,36,.10);

    transform:translateY(-2px);

}

/* ==========================
   LABEL COLOR
========================== */

.mitreg-field:hover label{

    color:#f15a24;

}

/* ==========================
   FIELD ANIMATION
========================== */

.mitreg-field{

    animation:mitField .45s ease;

}

@keyframes mitField{

    from{

        opacity:0;

        transform:translateY(12px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================
   CARD FADE
========================== */

.mitreg-card{

    animation:mitCard .6s ease;

}

@keyframes mitCard{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

.mitreg-row{

grid-template-columns:1fr;

}

.mitreg-form{

padding:30px;

}

}

@media(max-width:576px){

.mitreg-form{

padding:22px;

}

.mitreg-field input,
.mitreg-field select{

height:54px;

font-size:14px;

border-radius:14px;

}

}



/*=========================================================
    MITSD ADMISSION FORM
    PART 3B-2
=========================================================*/

/*==============================
TERMS & CONDITIONS
==============================*/

.mitreg-terms{

    margin:10px 0 30px;

}

.mitreg-terms label{

    display:flex;

    align-items:flex-start;

    gap:14px;

    cursor:pointer;

    font-size:14px;

    color:#5c6472;

    line-height:26px;

    user-select:none;

}

/* Hide default checkbox */

.mitreg-terms input[type="checkbox"]{

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    width:22px;

    height:22px;

    min-width:22px;

    border:2px solid #d8d8d8;

    border-radius:6px;

    margin-top:2px;

    background:#fff;

    cursor:pointer;

    transition:.3s;

    position:relative;

}

/* Checked */

.mitreg-terms input[type="checkbox"]:checked{

    background:linear-gradient(135deg,#f15a24,#ff9800);

    border-color:#f15a24;

}

/* Tick */

.mitreg-terms input[type="checkbox"]:checked::after{

    content:"✓";

    position:absolute;

    color:#fff;

    font-size:14px;

    left:4px;

    top:-1px;

    font-weight:bold;

}

/* Hover */

.mitreg-terms label:hover{

    color:#f15a24;

}

/*==============================
BUTTON
==============================*/

.mitreg-btn{

    position:relative;

    overflow:hidden;

    width:100%;

    height:62px;

    border:none;

    border-radius:60px;

    background:

        linear-gradient(
            135deg,
            #f15a24,
            #ff9800
        );

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    letter-spacing:.5px;

}

/* Shine */

.mitreg-btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:80%;

    height:100%;

    background:

        linear-gradient(

            120deg,

            transparent,

            rgba(255,255,255,.35),

            transparent

        );

    transform:skewX(-25deg);

    transition:.8s;

}

.mitreg-btn:hover::before{

    left:140%;

}

/* Hover */

.mitreg-btn:hover{

    transform:translateY(-4px);

    box-shadow:

        0 20px 40px rgba(241,90,36,.35);

}

/* Click */

.mitreg-btn:active{

    transform:scale(.98);

}

/* Arrow */

.mitreg-btn span{

    transition:.3s;

}

.mitreg-btn:hover span{

    transform:translateX(6px);

}

/*==============================
HELP BOX
==============================*/

.mitreg-help{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:28px;

    background:#fff7f2;

    border-top:1px solid rgba(241,90,36,.10);

}

/*==============================*/

.mitreg-help-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    background:

        linear-gradient(
            135deg,
            #f15a24,
            #ff9800
        );

    color:#fff;

    flex-shrink:0;

}

/*==============================*/

.mitreg-help-content{

    flex:1;

}

/*==============================*/

.mitreg-help-content h4{

    margin:0 0 10px;

    color:#1f2937;

    font-size:20px;

    font-weight:700;

}

/*==============================*/

.mitreg-help-content p{

    margin:0;

    font-size:15px;

    line-height:28px;

    color:#666;

}

/*==============================
CARD DECORATION
==============================*/

.mitreg-card-circle{

    position:absolute;

    border-radius:50%;

    z-index:0;

    pointer-events:none;

}

/* Top */

.mitreg-card-circle.one{

    width:140px;

    height:140px;

    background:

        rgba(255,255,255,.08);

    top:-45px;

    right:-35px;

}

/* Bottom */

.mitreg-card-circle.two{

    width:90px;

    height:90px;

    background:

        rgba(255,255,255,.10);

    bottom:-35px;

    left:-25px;

}

/* Keep content above circles */

.mitreg-card-header,
.mitreg-form,
.mitreg-help{

    position:relative;

    z-index:2;

}

/*==============================
BUTTON LOADING STATE
==============================*/

.mitreg-btn.loading{

    pointer-events:none;

    opacity:.8;

}

.mitreg-btn.loading::after{

    content:"";

    width:18px;

    height:18px;

    border:2px solid rgba(255,255,255,.4);

    border-top-color:#fff;

    border-radius:50%;

    margin-left:12px;

    animation:mitSpin .8s linear infinite;

}

@keyframes mitSpin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

.mitreg-help{

padding:22px;

flex-direction:column;

text-align:center;

align-items:center;

}

.mitreg-help-content{

text-align:center;

}

.mitreg-btn{

height:56px;

font-size:16px;

}

}

@media(max-width:480px){

.mitreg-help-icon{

width:52px;

height:52px;

font-size:22px;

}

.mitreg-help-content h4{

font-size:18px;

}

.mitreg-help-content p{

font-size:14px;

line-height:24px;

}

}

/*=========================================================
    MITSD ADMISSION SECTION
    PART 3C - FINAL POLISH
=========================================================*/

/* ==========================
   SMOOTH SCROLL
========================== */

html{
    scroll-behavior:smooth;
}

/* ==========================
   GENERAL TRANSITIONS
========================== */

.mitreg-section *,
.mitreg-section *::before,
.mitreg-section *::after{
    transition:all .35s ease;
}

/* ==========================
   FLOATING BACKGROUND
========================== */

@keyframes floatCircleOne{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-30px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes floatCircleTwo{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(25px);
    }

    100%{
        transform:translateX(0);
    }

}

.mitreg-bg-circle.one{

    animation:floatCircleOne 10s ease-in-out infinite;

}

.mitreg-bg-circle.two{

    animation:floatCircleTwo 14s ease-in-out infinite;

}

/* ==========================
   CARD HOVER EFFECT
========================== */

.mitreg-card{

    transition:.45s;

}

.mitreg-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 45px 90px rgba(0,0,0,.16);

}

/* ==========================
   FEATURE CARD
========================== */

.mitreg-feature-card{

    position:relative;

    overflow:hidden;

}

.mitreg-feature-card::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.65),

            transparent

        );

}

.mitreg-feature-card:hover::before{

    left:120%;

    transition:1s;

}

.mitreg-feature-card:hover{

    border-color:rgba(241,90,36,.15);

}

/* ==========================
   ICON ANIMATION
========================== */

.mitreg-icon{

    transition:.45s;

}

.mitreg-feature-card:hover .mitreg-icon{

    transform:

        rotate(6deg)

        scale(1.08);

}

/* ==========================
   SVG
========================== */

.mitreg-icon svg{

    transition:.35s;

}

.mitreg-feature-card:hover svg{

    transform:scale(1.08);

}

/* ==========================
   STATS
========================== */

.mitreg-stat{

    transition:.35s;

}

.mitreg-stat:hover{

    background:

        linear-gradient(

            135deg,

            #f15a24,

            #ff9800

        );

}

.mitreg-stat:hover h2,

.mitreg-stat:hover span{

    color:#fff;

}

/* ==========================
   TITLE
========================== */

.mitreg-heading{

    animation:fadeLeft .7s ease;

}

.mitreg-right{

    animation:fadeRight .7s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* ==========================
   TAG
========================== */

.mitreg-tag{

    position:relative;

}

.mitreg-tag::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#f15a24;

    display:inline-block;

    margin-right:10px;

}

/* ==========================
   HEADER
========================== */

.mitreg-card-header{

    overflow:hidden;

}

.mitreg-card-header::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:

        rgba(255,255,255,.08);

    right:-50px;

    top:-50px;

}

.mitreg-card-header::after{

    content:"";

    position:absolute;

    width:90px;

    height:90px;

    border-radius:50%;

    background:

        rgba(255,255,255,.08);

    left:-25px;

    bottom:-30px;

}

/* ==========================
   BUTTON
========================== */

.mitreg-btn{

    letter-spacing:.6px;

}

.mitreg-btn:hover{

    letter-spacing:1px;

}

/* ==========================
   HELP BOX
========================== */

.mitreg-help{

    transition:.35s;

}

.mitreg-help:hover{

    background:#fff3eb;

}

/* ==========================
   CUSTOM SCROLLBAR
========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#f15a24;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

/* ==========================
   IMAGE READY
========================== */

img{

    max-width:100%;

    height:auto;

}

/* ==========================
   REDUCE MOTION
========================== */

@media (prefers-reduced-motion: reduce){

*{

animation:none !important;

transition:none !important;

}

}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

.mitreg-wrapper{

gap:45px;

}

.mitreg-heading h2{

font-size:42px;

}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.mitreg-section{

padding:60px 0;

}

.mitreg-heading{

text-align:center;

}

.mitreg-heading h2{

font-size:34px;

}

.mitreg-heading p{

font-size:16px;

line-height:28px;

}

.mitreg-stats{

grid-template-columns:1fr;

}

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

.mitreg-heading h2{

font-size:28px;

}

.mitreg-feature-card{

padding:20px;

}

.mitreg-content h3{

font-size:20px;

}

.mitreg-content p{

font-size:15px;

line-height:26px;

}

.mitreg-stat{

padding:22px;

}

}

/*==================================================
        RESPONSIVE CSS
==================================================*/

/************* Large Laptop *************/

@media only screen and (max-width:1400px){

.mitreg-container{

width:94%;

}

.mitreg-wrapper{

grid-template-columns:55% 45%;

gap:40px;

}

}

/************* Laptop *************/

@media only screen and (max-width:1200px){

.mitreg-wrapper{

grid-template-columns:1fr;

}

.mitreg-left{

order:1;

}

.mitreg-right{

order:2;

max-width:700px;

margin:auto;

width:100%;

}

.mitreg-heading{

text-align:center;

}

.mitreg-heading p{

margin:auto;

}

}

/************* Tablet *************/

@media only screen and (max-width:992px){

.mitreg-section{

padding:60px 20px;

}

.mitreg-heading h2{

font-size:38px;

}

.mitreg-heading p{

font-size:16px;

line-height:28px;

}

.mitreg-card-header{

padding:35px 25px;

}

.mitreg-card-header h2{

font-size:28px;

}

.mitreg-form{

padding:25px;

}

.mitreg-row{

grid-template-columns:1fr;

gap:18px;

}

.mitreg-feature{

padding:22px;

}

.mitreg-feature-card{

padding:22px;

}

.mitreg-icon{

width:65px;

height:65px;

min-width:65px;

}

.mitreg-content h3{

font-size:20px;

}

}

/************* Mobile *************/

@media only screen and (max-width:768px){

.mitreg-section{

padding:50px 15px;

overflow:hidden;

}

.mitreg-container{

width:100%;

}

.mitreg-wrapper{

display:block;

}

.mitreg-heading{

text-align:center;

margin-bottom:35px;

}

.mitreg-heading h2{

font-size:30px;

line-height:1.3;

}

.mitreg-heading p{

font-size:15px;

line-height:26px;

}

.mitreg-tag{

font-size:12px;

padding:8px 18px;

}

.mitreg-features{

gap:15px;

}

.mitreg-feature-card{

display:block;

text-align:center;

padding:20px;

}

.mitreg-icon{

margin:auto auto 20px;

}

.mitreg-content h3{

font-size:18px;

}

.mitreg-content p{

font-size:14px;

line-height:24px;

}

.mitreg-stats{

grid-template-columns:1fr;

gap:15px;

margin-top:30px;

}

.mitreg-stat{

padding:20px;

}

.mitreg-card{

margin-top:40px;

border-radius:20px;

}

.mitreg-card-header{

padding:30px 20px;

}

.mitreg-card-header h2{

font-size:26px;

}

.mitreg-card-header p{

font-size:14px;

line-height:24px;

}

.mitreg-form{

padding:20px;

}

.mitreg-row{

display:block;

margin-bottom:0;

}

.mitreg-field{

margin-bottom:18px;

}

.mitreg-field input,

.mitreg-field select{

height:52px;

font-size:14px;

border-radius:12px;

}

.mitreg-btn{

height:54px;

font-size:15px;

}

.mitreg-help{

display:block;

text-align:center;

padding:20px;

}

.mitreg-help-icon{

margin:0 auto 15px;

}

}

/************* Small Mobile *************/

@media only screen and (max-width:480px){

.mitreg-section{

padding:40px 12px;

}

.mitreg-heading h2{

font-size:24px;

}

.mitreg-heading p{

font-size:14px;

}

.mitreg-card{

border-radius:18px;

}

.mitreg-card-header{

padding:25px 15px;

}

.mitreg-card-header h2{

font-size:22px;

}

.mitreg-form{

padding:15px;

}

.mitreg-field input,

.mitreg-field select{

height:48px;

padding:0 15px;

font-size:13px;

}

.mitreg-btn{

height:50px;

font-size:14px;

}

.mitreg-feature-card{

padding:18px;

}

.mitreg-content h3{

font-size:17px;

}

.mitreg-content p{

font-size:13px;

line-height:22px;

}

}

/************* Decorative Elements *************/

@media(max-width:768px){

.mitreg-bg-circle,

.mitreg-card-circle{

display:none;

}

}

/************* Prevent Horizontal Scroll *************/

html,

body{

overflow-x:hidden;

}

*{

box-sizing:border-box;

}

img{

max-width:100%;

height:auto;

}