.form-container.bg-1{
    background-color: #ffffff;
}
.form-container.bg-2{
    background-color: #f7f7f7;
}
.form-container.bg-3{
    background-color: #f4f5f6;
}
.form-container .form-heading{
    margin-bottom: 30px;
}
.form-container .form-heading .title{
    text-align: center;
    color: #000000;
}
.form-container .form-heading p{
    color: #333333;
    text-align: center;
}
.form-container form.custom-form .form-label{
    font-size: 18px;
    color: #333333;
}
.form-container form.custom-form .form-group .invalid-feedback{
    color: red;
    margin-top: 10px;
}
.form-container form.custom-form.styled-input .form-control,
.form-container form.custom-form.styled-input .form-select{
    background-color: #f3f4f5;
}
.form-container form.custom-form .form-control{
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 18px;
}
.form-container form.custom-form.bordered{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px;
}
.form-container form.custom-form.centered{
    width: 50%;
    margin: 0 auto;
}
.form-container form.custom-form button[type="submit"]{
    width: 100%;
    padding: 10px;
    font-size: 21px;
    border-radius: 6px;
    background-color: #F5C34B;
    border: 1px solid #F5C34B;
    color: #041E42;
}
.form-container form.custom-form input[type="file"].has-error,
.form-container form.custom-form .form-control.has-error,
.form-container form.custom-form .form-select.has-error{
    border: 1px solid red;
}

.form-container form.custom-form .form-group.relative{
    position: relative;
}
.form-container form.custom-form .form-group.relative .dropdown{
    position: absolute;
    width: 100%;
    display: none;
    max-height: 250px;
    border: 1px solid #f4f5f6;
    overflow-y: auto;
    margin-top: 5px;
    left: 0;
    z-index: 10;
    background-color: #FFFFFF;
    border: 1px solid rgba(51, 51, 51, 0.4);
}
.form-container form.custom-form .form-group.relative .dropdown ul{
    margin-bottom: 0;
}
.form-container form.custom-form .form-group.relative .dropdown ul li{
    padding: 5px 10px;
    border-bottom: 1px solid #f4f5f6;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    color: #666666;
}
.form-container form.custom-form .form-group.relative .dropdown ul li:hover{
    background-color: #333333;
    color: #ffffff;
}
@media only screen and (max-width:1199px){
    .form-container form.custom-form.centered{
        width: 60%;
    }
}

@media only screen and (max-width:991px){
    .form-container form.custom-form.centered{
        width: 90%;
    }
}

@media only screen and (max-width:767px){
    .form-container form.custom-form.centered{
        width: 100%;
    }
    .form-container form.custom-form.bordered{
        padding: 20px;
    }
}

@media only screen and (max-width:567px){
    .form-container form.custom-form.bordered{
        padding: 20px 10px;
    }
}