



/* ---------- required_field editing start ---------- */
section{
    background-color: var(--secondary-background-color);
    color: var(--secondary-text-color);
}
.container_heading{
    background-color: var(--primary-background-color);
    color: var( --primary-text-color);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form_div{
    background-color: white;
    padding: 10px 10px;
}
.required_field{
    color: red;
}
#submit_applicant_form{
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border: none;
    padding: 10px 30px;
}
small{
    color: rgb(169, 0, 163);
}
/* ---------- required_field editing end ---------- */



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    section{
        font-size: 12px;
    }
    #submit_applicant_form{
        font-size: 12px;
    }
    #apply_for option {
        font-size: 12px;
    }
    #applicant_dob {
        font-size: 12px;
    }
    .mb-3 {
        font-size: 12px !important;
    }
    #applicant_photo ,#applicant_cv ,#applicant_signature{
        font-size: 12px;
    }
    .container_heading h5{
        font-size: 12px;
    }


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}