.elementor-widget-container [data-tippy-root] > .tippy-box{color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-container [data-tippy-root] > .tippy-box .tippy-arrow{color:var( --e-global-color-primary );}.elementor-24658 .elementor-element.elementor-element-d5982d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:20px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-widget-shortcode [data-tippy-root] > .tippy-box{color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-shortcode [data-tippy-root] > .tippy-box .tippy-arrow{color:var( --e-global-color-primary );}.elementor-widget-shortcode .wpcf7 input:not([type="submit"]){background-color:var( --e-global-color-primary );}.elementor-widget-shortcode .wpcf7 select{background-color:var( --e-global-color-primary );}.elementor-widget-shortcode .wpcf7 textarea{background-color:var( --e-global-color-primary );}.elementor-widget-shortcode .wpcf7 label{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-shortcode ::placeholder{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-shortcode .wpcf7-submit{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );}.elementor-widget-shortcode .wpcf7 input[type="submit"]:hover{color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );}.elementor-24658 .elementor-element.elementor-element-2033e71.elementor-element{--align-self:center;}.elementor-widget-html [data-tippy-root] > .tippy-box{color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-html [data-tippy-root] > .tippy-box .tippy-arrow{color:var( --e-global-color-primary );}.elementor-widget-html .wpcf7 input:not([type="submit"]){background-color:var( --e-global-color-primary );}.elementor-widget-html .wpcf7 select{background-color:var( --e-global-color-primary );}.elementor-widget-html .wpcf7 textarea{background-color:var( --e-global-color-primary );}.elementor-widget-html .wpcf7 label{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-html ::placeholder{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-html .wpcf7-submit{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );}.elementor-widget-html .wpcf7 input[type="submit"]:hover{color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-2033e71 *//* Step 1: Import the font (place this at the very top of your CSS file) */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* Apply Space Grotesk to the entire form container */
.gap-otp-form-container {
    font-family: 'Space Grotesk', sans-serif; /* Apply font here */
    max-width: 400px;
    margin: 0px auto;
    padding: 20px;
    border: 0px solid #ddd;
    text-align: center;
}

/* Styling for the form heading */
.gap-otp-form-container h3 {
    font-family: 'Space Grotesk', sans-serif; /* Ensure heading also uses the font */
    color: #333;
    font-size: 15px;
    margin-bottom: 5px;
}

/* Styling for the introductory paragraph */
.gap-otp-form p {
    font-family: 'Space Grotesk', sans-serif; /* Ensure paragraph also uses the font */
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0px;
}

/* Input group layout (label and input) */
.gap-otp-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.gap-otp-input-group label {
    font-family: 'Space Grotesk', sans-serif; /* Ensure label also uses the font */
    font-weight: bold;
    margin-bottom: 8px;
    color: #444;
    font-size: 15px;
}

/* OTP Input field */
#otp-input-id {
    font-family: 'Space Grotesk', sans-serif; /* Apply font to input */
    width: 100%;
    color: black;
    letter-spacing: 1px;
    max-width: 200px;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    transition: border-color 0.3s ease;
    font-weight: bold; /* Make the entered text bold */
}

#otp-input-id:focus {
    outline: none;
    border-color: #9cee30;
}

/* Verify OTP button */
#verify-otp-button {
    font-family: 'Space Grotesk', sans-serif; /* Apply font to button */
    background-color: #000000;
    color: #9cee30;
    padding: 10px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 1px;
    
    /* --- Centering on mobile --- */
    display: block; /* Make it a block-level element */
    margin-left: auto; /* Push it to the right */
    margin-right: auto; /* Push it to the left */
    max-width: 200px; /* Optional: Limit width so it doesn't stretch too wide on larger screens, adjust as needed */
    /* You could also use margin: 0 auto; as a shorthand for margin-top/bottom: 0 and margin-left/right: auto */
}

#verify-otp-button:hover {
    background-color: #9cee30;
    color: #000000;
}

/* Timer and Resend button container */
.gap-otp-timer-resend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

/* OTP Timer text */
#otp-timer-id {
    font-family: 'Space Grotesk', sans-serif; /* Apply font to timer */
    font-size: 1em;
    color: #777;
    white-space: nowrap;
    font-weight: bold;
}

/* Resend OTP button */
#otp-resend-button {
    font-family: 'Space Grotesk', sans-serif; /* Apply font to resend button */
    background:#D5FF9C ;
    border: none;
    color: #23282d;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9em;
    padding: 4px 4px;
    border-radius: 7px;
    transition: color 0.3s ease;
    
}

#otp-resend-button:not([disabled]):hover {
    color: #000000;
}

#otp-resend-button[disabled] {
    color: #aaa;
    cursor: not-allowed;
    text-decoration: none;
}

/* OTP Message display (for success/error) */
#otp-message {
    font-family: 'Space Grotesk', sans-serif; /* Apply font to message */
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
}

/* Specific colors for success/error messages */
#otp-message.success {
    background-color: #e6ffe6;
    color: #28a745;
    border: 1px solid #28a745;
}

#otp-message.error {
    background-color: #ffe6e6;
    color: #dc3545;
    border: 1px solid #dc3545;
}


/* Force placeholder text color to grey */
#otp-input-id::placeholder {
    color: grey; /* Or a specific hex code like #888888 for a softer grey */
    opacity: 1; /* Some browsers set a lower default opacity for placeholders, force it to 1 */
}

/* For older browser compatibility (though ::placeholder is widely supported now) */
#otp-input-id::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: grey;
    opacity: 1;
}
#otp-input-id::-moz-placeholder { /* Mozilla Firefox */
    color: grey;
    opacity: 1;
}
#otp-input-id:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: grey;
    opacity: 1;
}
#otp-input-id:: -ms-input-placeholder { /* Microsoft Edge (old syntax) */
    color: grey;
    opacity: 1;
}/* End custom CSS */



