.elementor-10091 .elementor-element.elementor-element-b65c2b2{--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;}#elementor-popup-modal-10091 .dialog-widget-content{animation-duration:1.2s;background-color:#02010100;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-10091{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-10091 .dialog-message{width:350px;height:auto;}#elementor-popup-modal-10091 .dialog-close-button{display:flex;}#elementor-popup-modal-10091 .dialog-close-button i{color:#000000;}#elementor-popup-modal-10091 .dialog-close-button svg{fill:#000000;}@media(max-width:767px){#elementor-popup-modal-10091 .dialog-message{width:312px;}}/* Start custom CSS for html, class: .elementor-element-b14c8cd *//* Form container */
.customForm {
    max-width: 400px;
    margin: 0 auto;
    padding: 15px;
    background-color: #ffffff; /* white background */
    color: #000000; /* black font */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    border:1px solid black;
}

/* Form title */
.customForm h5 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

/* Labels */
.customForm label {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 20px;
}

/* Inputs and Textarea */
.customForm input[type="text"],
.customForm input[type="email"],
.customForm textarea {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

/* Focus animation */
.customForm input[type="text"]:focus,
.customForm input[type="email"]:focus,
.customForm textarea:focus {
    border-color: #000; /* black border on focus */
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Submit button */
.customForm .submitBtn {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-left: 110px;
  
}

/* Button hover */
.customForm .submitBtn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Error messages */
.customForm .mobileError {
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Responsive spacing */
@media (max-width: 480px) {
    .customForm {
        padding: 15px;
    }
    .customForm .submitBtn{
      margin-left: 90px;
    }
}/* End custom CSS */