.elementor-40 .elementor-element.elementor-element-2a3df05{--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;--padding-top:20px;--padding-bottom:10px;--padding-left:0px;--padding-right:0px;}.pp-tooltip.pp-tooltip-{{ID}} .pp-tooltip-content{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-heading .elementor-heading-title{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-40 .elementor-element.elementor-element-c1d844d{text-align:center;}.elementor-40 .elementor-element.elementor-element-c1d844d .elementor-heading-title{font-family:"Outfit", Sans-serif;font-size:38px;font-weight:600;color:#000000;}#elementor-popup-modal-40{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-40 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-40 .dialog-close-button{display:flex;}#elementor-popup-modal-40 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){.elementor-40 .elementor-element.elementor-element-2a3df05{--padding-top:20px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}.elementor-40 .elementor-element.elementor-element-c1d844d .elementor-heading-title{font-size:7vw;}}/* Start custom CSS for html, class: .elementor-element-392d48e */body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    box-sizing: border-box;
    overflow: auto;
}

.my-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.registration-form {
    background-color: #ffffff; /* White background for the form */
    padding: 20px;
    width: 100%;
    max-width: 500px;
    margin: auto;
    border-radius: 8px;
  
    box-sizing: border-box;
}

.registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.required {
    color: red;
    margin-left: 5px;
}

.row {
    display: flex;
    gap: 10px;
}

.column {
    flex: 1;
}

/* Gradient border and rounded corners for input fields */
input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1.5px solid;
    border-image: linear-gradient(to right, #2196F3, #21CBF3); /* Blue gradient */
    border-image-slice: 1;
    border-radius: 15px; /* Rounded corners with 15px radius */
    font-size: 18px;
    background-color: #fff;
    box-sizing: border-box;
}

/* Focus effect for input fields */
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border-image: linear-gradient(to right, #1976D2, #2196F3); /* Darker blue gradient on focus */
    border-image-slice: 1;
}

/* Gold gradient button styling with black text */
button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500); /* Gold gradient */
    border: none;
    border-radius: 4px;
    color: black; /* Black text */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700); /* Inverted gradient on hover */
}

/* Spinner styling */
.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #FFD700; /* Gold spinner */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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

@media (max-width: 1024px) {
    button {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    button {
        font-size: 20px;
    }

    .row {
        flex-direction: column;
    }
}/* End custom CSS */