@charset "utf-8";
/* ===========================================================
   Signup / lead form — used on index.html (which loads style.css,
   not inner.css). All selectors are scoped under .signup_section
   so they cannot collide with the homepage's style.css rules.
   Mirrors the form styling from the inner pages (inner.css).
   =========================================================== */

.signup_section {
    float: left;
    width: 100%;
    padding: 60px 0 70px;
    text-align: center;
}

.signup_section .common_heading {
    margin-top: 0;
}

.signup_section .form_box {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 835px;
    background: #fff;
    border: 1px solid #d5d8d8;
    border-radius: 12px;
    padding: 35px 45px 40px;
    position: relative;
    margin-top: 55px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.signup_section .frm_arw {
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
}

.signup_section .frm_sec {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.signup_section .frm_sec_inr {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.signup_section .frmfield {
    float: left;
    width: 47%;
    margin-top: 25px;
}

.signup_section .frmfield.mt_0 {
    margin-top: 0;
}

.signup_section .field-wrapper {
    position: relative;
    width: 100%;
}

.signup_section .frm_label {
    width: 100%;
    float: left;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    color: #000000;
}

.signup_section .input_fld {
    float: left;
    width: 100%;
    height: 65px;
    color: #000;
    font-size: 18px;
    background: #fff;
    text-align: left;
    border-radius: 10px;
    font-family: 'Inter';
    border: 1px solid #d8d8d8;
    font-weight: normal;
    padding: 0 15px;
    outline: none;
    -webkit-appearance: none;
    margin-top: 10px;
    box-sizing: border-box;
}

.signup_section .input_fld:focus {
    border-color: #066464;
}

.signup_section .select_flds {
    background: url(../images/down-arrow.webp) no-repeat center right 15px;
}

.signup_section .fieldToggle {
    float: left;
    color: #000;
    cursor: pointer;
    position: relative;
    padding-left: 38px;
    margin-top: 35px;
}

.signup_section .fieldToggle input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.signup_section .fieldToggle input[type=checkbox] + span {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 5px;
    left: 0;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
}

.signup_section .fieldToggle input[type=checkbox]:checked + span:after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: url(../images/blk_tik.svg) no-repeat center center;
    background-size: 100%;
    left: 1px;
    top: 1px;
}

.signup_section .check_bx_txt {
    text-align: left;
    color: #000000;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

.signup_section .check_bx_txt a {
    color: #066464;
    text-decoration: underline;
}

.signup_section .frm_btn {
    text-align: center;
    font-family: 'DM Sans';
    font-weight: 700;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
    line-height: normal !important;
    margin-top: 40px;
}

.signup_section .clearall {
    clear: both;
}

/* ---- Loading state (spinner on submit) ---- */
.signup_section .loading,
#mainForm.loading {
    opacity: 0.7;
    pointer-events: none;
}

#mainForm.loading .frm_btn {
    position: relative;
}

#mainForm.loading .frm_btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s ease infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- Tablet ---- */
@media only screen and (max-width: 1021px) {
    .signup_section { padding: 35px 0 45px; }
    .signup_section .form_box { margin-top: 40px; }
}

/* ---- Mobile ---- */
@media only screen and (max-width: 767px) {
    .signup_section { padding: 25px 0 35px; }
    .signup_section .form_box { border-radius: 7px; margin-top: 25px; padding: 20px 18px 30px; }
    .signup_section .frm_arw { top: -15px; margin-left: -7px; width: 15px; }
    .signup_section .frm_sec_inr { row-gap: 8px; }
    .signup_section .frmfield { width: 100%; margin-top: 10px; }
    .signup_section .frm_label { float: left; font-size: 15px; line-height: 22px; }
    .signup_section .input_fld { height: 50px; font-size: 15px; border-radius: 6px; margin-top: 5px; padding: 0 10px; }
    .signup_section .fieldToggle { padding-left: 30px; margin-top: 20px; }
    .signup_section .fieldToggle input[type=checkbox] + span { width: 20px; height: 20px; top: 2px; }
    .signup_section .fieldToggle input[type=checkbox]:checked + span:after { width: 15px; height: 15px; }
    .signup_section .check_bx_txt { font-size: 13px; line-height: 19px; }
    .signup_section .frm_btn { margin-top: 30px; }
}
