body {
    /*font-family: 'Poppins', sans-serif !important;*/
    font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
}

.form-container {
    padding: 30px !important;
    border-radius: 12px !important;

    width: 70% !important;
    margin: auto !important;
}

h1 {
    text-align: center !important;
    margin-bottom: 20px !important;
}

.form-step {
    display: none !important;
}

.form-step.active {
    display: block !important;
}

.form-group {
    margin-bottom: 15px !important;
}

label {
    display: block !important;
    margin-bottom: 7px !important;
    font-weight: 600 !important;
    font-size: 20px !important;
}

input,
select,
textarea {
    width: 100% !important;
    padding: 12px 10px !important;
    border: 0.3px solid #ebeef0 !important;
    border-radius: 6px !important;
    margin-bottom: 5px !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    background-color: #ebeef0;
    color:#9c9d9e;

}

.iti{
    width:100% !important;
}

/* intl-tel-input fix */
.iti {
  width: 100% !important;
}

.iti input {
  padding-left: 86px !important; /* flag + spacing */
}


select {
    padding-right: 30px !important;
    /* reduce space on the right */
    appearance: none !important;
    /* removes default arrow (we can add custom one) */
    -webkit-appearance: none !important;

    -moz-appearance: none !important;
    background: url('data:image/svg+xml;utf8,<svg fill="%23000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center !important;
    background-size: 26px !important;
    background-color: #ebeef0 !important;
}

input[type="file"] {
    padding: 12px 20px !important;
    background-color: #ebeef0 !important;
    border: 0.3px solid #ebeef0 !important;
}

.error {
    color: red !important;
    font-size: 13px !important;
    margin-top: 3px !important;
}

.buttons {
    display: flex !important;
    justify-content: end !important;
    gap: 20px !important;
    margin-top: 24px !important;
}

.tab-button {
    padding: 10px 20px !important;
    border: none !important;
    background: #000000 !important;
    color: #fff !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif !important;
}

.tab-button:hover {
    background: #da1010 !important;
    color: #fff !important;
}

.tab-button:disabled {
    background: #000 !important;
    cursor: not-allowed !important;
    /*display:none !important;*/
}

.d-none {
    display: none !important;
}


.custom-select {
    max-width: 100% !important;
}



/*at media 1200*/

@media (max-width: 1200px) {
    .form-container {
        width: 80% !important;
        padding: 25px !important;
    }}









/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .form-container {
        width: 90% !important;
        padding: 25px !important;
    }

    label {
        font-size: 18px !important;
    }

    input,
    select,
    textarea {
        font-size: 14px !important;
        padding: 12px 10px !important;
    }

    .tab-button {
        font-size: 14px !important;
        padding: 10px 18px !important;
    }
}

/* Mobile devices (≤ 600px) */
@media (max-width: 600px) {
    body {
        align-items: flex-start !important;
        padding: 20px !important;
    }

    .form-container {
        width: 100% !important;
        padding: 20px !important;
        border-radius: 10px !important;
    }

    h1 {
        font-size: 22px !important;
    }

    label {
        font-size: 14px !important;
    }

    input,
    select,
    textarea {
        font-size: 14px !important;
        padding: 12px 10px !important;
    }
    
    #prevBtn {
    display: none;
}


    .buttons {
        flex-direction: row !important;
        gap: 10px !important;
    }

    .tab-button {
        width: 100% !important;
        font-size: 14px !important;
        padding: 12px !important;
    }
}