.admissionSection{
    display: flex;
    flex-wrap: wrap;
    min-height: 50vh;
    margin-top: 40px;
}
.admissionLeft{
    flex-basis: 50%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 100px;
    background-color: #fff;
}
.admissionLeft div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.admissionLeft span{
    margin-right: 40px;
    padding: 20px 28px;
    border-radius: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    font-size: 25px;
}
.admissionLeft div:first-child span{
    color: rgb(255, 55, 0);
    background-color:  rgba(255, 55, 0, 0.185);
}
.admissionLeft div:nth-child(2) span{
    color: rgb(0, 110, 255);
    background-color:  rgba(0, 110, 255, 0.289);
}
.admissionLeft div:nth-child(3) span{
    color: rgb(37, 140, 8);
    background-color:  rgba(37, 140, 8, 0.295);
}
.admissionLeft div:nth-child(4) span{
    color: rgb(0, 0, 0);
    background-color:  rgba(0, 0, 0, 0.289);
}
.admissionRight{
    height: 100%;
    flex-basis: 50%;
    padding: 10px 20px;
    width: fit-content;
}

.admissionRight form{
    padding: 30px;
    border: 1.54px dotted rgba(0, 0, 0, 0.38);
    width: fit-content;
    border-radius: 10px;
}
.formGroup{
    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.admissionRight form label{
    display: block;
    padding-left: 10px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.509);
    width: 100%;
}
.admissionRight form input{
    outline: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.161);
    width: 100%;
    font-size: 20px;
    margin-bottom: 30px;
    padding: 10px 10px;
    font-weight: light;
}
.formGroup button{
    padding: 20px 30px;
    background: red;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: 0;
    border-radius: 50px;
    cursor :pointer;
    margin-top: 20px;
}

@media only screen and (width <= 1260px){
    .admissionSection{
        flex-direction: column;
    }
    .admissionLeft, .admissionRight{
        flex-basis: 100%;
        width: 100vw;
        display: flex;
    }
    .admissionLeft{
        min-height: 50vh;
        flex-direction: column;
        padding-left: 80px;
    }
    .admissionLeft span{
        font-size: 20px;
        margin-right: 25px;
    }
    .admissionLeft h3{
        font-size: 18px;
    }

    .admissionRight{
        align-items: center;
        justify-content: center;
    }
    .admissionRight form{
        align-items: center;
        justify-content: center;
        width: 90%;
    }
    .formGroup{
        width : 100%;
    }

}
@media only screen and (width <= 830px){
    .admissionLeft{
        padding-left: 20px ;
    }
    .admissionLeft span{
        font-size: 18px;
        margin-right: 15px;
        font-weight: bolder;
        padding: 15px 21px;
    }
    .admissionLeft h3{
        font-size: 15px;

    }
}