@media only screen and (max-width: 699px){
    body{
        height: fit-content;
    }
    .mainContent{
        width: 100%;
        width: -webkit-fill-available;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mainContent .leftBanner{
        width: -webkit-fill-available;
        height: 360px;
        position: relative;
        overflow: hidden;
    }
    .mainContent .leftBanner img{
        width: 100%;
        height: 360px;
        object-fit: cover;
    }
    .leftBanner .leftOverlay{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0,0,0, 0.6);
        padding-inline: 30px;
        padding-top: 120px;
    }
    .leftBanner .leftOverlay h1{
        color: #fff;
        font-size: 20px;
        margin-bottom: 10px;
        text-shadow:  2px 2px 5px #000;
        text-align: center;
    }
    .leftBanner .leftOverlay p{
        width: 95%;
        color: #fff;
        font-size: 13px;
        text-shadow:  2px 2px 5px #000;
        text-align: center;
    }
    .description{
        margin-bottom: 10px;
    }
    .hints{
        font-style: italic;
        font-size: 12px !important;
        font-weight: 600;
    }
    .formSection{
        width: 320px;
        height: 500px;
        border: 1px solid #ccc;
        margin-inline: 25px;
        margin-top: 50px;
        margin-bottom: 30px;
        border-radius: 5px;
    }
    .formSection .formHeader{
        background-color: #012169;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 20px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .formHeader h2{
        color: #fff;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
    }
    .formHeader p{
        color:  #f1f1f1;
    }
    .formSection .form{
        width: -webkit-fill-available;
        height: 350px;
        position: relative;
    }
    .step1{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        padding: 20px;
    }
    
    .form input{
        width: 100%;
        padding: 15px;
        border-radius: 7px;
        border: 0.5px solid #ccc;
        margin: 20px 0px;
        font-size: 18px;
        outline: none;
    }
    .form .inputFlex input{
        width: 46%;
        padding: 15px;
        border-radius: 7px;
        border: 0.5px solid #ccc;
        margin: 20px 0px;
        font-size: 18px;
        outline: none;
    }
    .form .inputFlex{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .form select{
        width: 100%;
        border: none;
        border-bottom: 0.5px solid #cccc;
        font-size: 18px;
        outline: none;
    }
    .form button{
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 7px;
        background-color: #012169;
        color: #fff;
        font-weight: 600;
        font-size: 18px;
    }
}