.examBox{
    height: 300px; width: 80%;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 50px;
    box-sizing: border-box;
    margin: 20px auto 30px auto;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}
.textBox-examBox{
    height: auto; width: fit-content;
    display: flex;
    flex-direction: column;
}
.textBox-examBox h1{
    font-size: 60px;
    font-family: "League Spartan", sans-serif;
}
.textBox-examBox p{
    font-size: 25px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 900;
}
form{
    height: 105px;
    width: 80%;
    margin: auto;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    box-sizing: border-box;
    align-items: center;
    color: white;
    font-family: "Noto Sans", sans-serif;
    overflow: hidden;
    background: linear-gradient(90deg, #f7f7f7, #f6f6f6);
    margin-bottom: 30px;
}
.left-form{
    display: flex;
    gap: 20px;
    width: 70%;
    height: 100%;
    align-items: center;
    border-radius: 0 100px 50px 0;
    background: linear-gradient(90deg, #7A68E2, #E6B6FF);
    box-shadow: 10px 10px 0px 10px #9A88EF;
    padding-left: 30px;
    z-index: 1;
}
.right-form{
    height: 100%;
    display: flex;
    gap: 20px;
    width: 30%;
    justify-content: end;
    align-items: center;
    padding-right: 27px;
}
button{
    height: 60px;
    width: auto;
    border: none;
    border-radius: 20px;
    background: linear-gradient(90deg, #6952D1, #9769F0);
    color: white;
    font-size: 15px;
    padding: 20px;
    box-sizing: border-box;
    font-weight: 600;
}
button:hover{
    background: linear-gradient(90deg, #5942C1, #9769F0);;
}


@media screen and (max-width:702px){
    form{width: 90%;}
    .examBox{padding: 30px;}
    .left-form{width: 40%;}
    .right-form{width: 60%;}
    .textBox-examBox h1{font-size: 20px;}
}
@media screen and (max-width:580px){
    .left-form{width: 50%;}
    .right-form{width: 50%;}
}
@media screen and (max-width:476px){
    .left-form{padding-left: 20px;}
    button{padding: 10px;}
}