html{
    width: 100%;
    width: -webkit-fill-available;
    height: 100%;
    height: -webkit-fill-available;
}
body{
    height: 100%;
    width: 100%;
    width: -webkit-fill-available;
}
.mainContent{
    width: 100%;
    width: -webkit-fill-available;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mainContent .leftBanner{
    width: 60%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mainContent .leftBanner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leftBanner .leftOverlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0, 0.3);
    padding: 180px 30px;
}
.leftBanner .leftOverlay h1{
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow:  2px 2px 5px #000;
}
.leftBanner .leftOverlay p{
    width: 400px;
    color: #fff;
    font-size: 16px;
    text-shadow:  2px 2px 5px #000;
}
.description{
    margin-bottom: 20px;
}
.hints{
    font-style: italic;
    font-size: 14px !important;
    font-weight: 600;
}
.formSection{
    width: 400px;
    height: 500px;
    border: 1px solid #ccc;
    margin-left: 100px;
    margin-top: 50px;
    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;
}