/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff8800;
} */
.formReg{
    /* position: relative; */
    /* max-width: 900px;
    width: 100%; */
    border-radius: 6px;
    padding: 30px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.formReg header{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.formReg header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 27px;
    border-radius: 8px;
    /* background-color: #ff8800; */
    background-color: #ff8800;
}
.formReg{

    /* position: relative; */
    margin-top: 16px;
    /* min-height: 880px; */
    background-color: #fff;
    overflow: hidden;
}
.formReg  .form{
    width: 100%;
    /* position: absolute; */
    background-color: #fff;
    transition: 0.3s ease;
}
.formReg .form.second{
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}
    .formReg.secActive .form.second {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }
    .formReg.secActive .form.first {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
    }
.formReg .title{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #333;
}
.formReg .fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
    .formReg .fields .input-field {
        display: flex;
        width: calc(100% / 3 - 15px);
        flex-direction: column;
        margin: 4px 0;
    }
.input-field label{
    font-size: 12px;
    font-weight: 500;
    color: #2e2e2e;
}
.input-field input, select, textarea{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}
.input-field input :focus,
.input-field select:focus{
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.input-field select,
.input-field input[type="date"]{
    color: #707070;
}
.input-field input[type="date"]:valid{
    color: #333;
}
.formReg  button, .backBtn, .btSubmit{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    /* background-color: #ff8800; */
    background-color: #ff8800;
    transition: all 0.3s linear;
    cursor: pointer;
}
.formReg  .btnText{
    font-size: 14px;
    font-weight: 400;
}
.formReg button:hover {
    background-color: #265df2;
}
.formReg button i,
.formReg .backBtn i {
    margin: 0 6px;
}
.formReg .backBtn i {
    transform: rotate(180deg);
}
.formReg .buttons {
    display: flex;
    align-items: center;
}
    .formReg .buttons button, .backBtn {
        margin-right: 14px;
    }
.file{
    padding: 8px  0px 0px 8px !important;
}



@media (max-width: 750px) {
    .formReg {
        overflow-y: scroll;
    }
    .formReg::-webkit-scrollbar{
       display: none;
    }
        .formReg .fields .input-field {
            width: calc(100% / 2 - 15px);
        }
}

.chkIsChildren{
    height: 15px !important;
    position: relative;
    top: 3px;
    margin: 0 5px 0 5px !important;
}
textarea{
    padding: 8px 0 0 10px;
}

.applicant-detail {
    background-color: #ffffff;
    text-align: center;
}

    .applicant-detail table {
        width: 90%;
        margin-left: 10%;
        text-align: left;
        margin-top:5%;
    }

a.btnDownload, a.btnDownload:hover {
    text-decoration: underline;
    font-weight: bold;
    color: #337ab7;
}
@media (max-width: 550px) {
    .formReg .fields .input-field {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .vs-outer-space {
        position: absolute; 
        top: 0;
         left: 0;
        width: 100%;
       
    }
}