

.sign-up-form-wrapper {
    padding: 60px 0;
}

.form-wrapper {
    max-width: 968px;
    height: 480px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.form-wrapper h4 {
    margin-bottom: 30px;
    color: #0098da;
}

.img-wrapper {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.form-container {
    padding: 40px 10px;
    padding-right: 30px;
    background-color: #fff;
}

.form-container input {
    width: 100%;
    padding: 7px;
    outline: none;
    border: 1px solid #00000070;
    margin-bottom: 20px;
    border-radius: 10px;
}

.sing-up-btn {
    width: 100%;
    background-color: #ed3237;
    padding: 10px;
    border: none;
    color: #fff;
    border-radius: 7px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sing-up-btn:hover {
    background-color: #d31e24;
}

.form-container input:focus {
    border: 1px solid #0098da;
}



.login,
.signup {
    color: #0098da !important;
    font-weight: 600;
    cursor: pointer;
}




@media screen and (max-width: 991px) {
    .img-wrap {
        display: none;
    }
}
@media screen and (max-width: 1200px) {
   .form-container{
    padding-left: 20px !important;
    padding-right: 20px !important;
   }

}