.elementor-481 .elementor-element.elementor-element-6e40d02{--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;}/* Start custom CSS for html, class: .elementor-element-c81e6dc */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;900&display=swap');

/* Regole globali di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ATTENZIONE: Le regole seguenti per 'body' modificheranno l'INTERA pagina.
Se vuoi che lo sfondo con gradiente si applichi solo a questa sezione,
dovresti impostarlo nelle opzioni 'Stile' della Sezione di Elementor
e cancellare il blocco 'body' da qui.
*/
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Stili specifici per il modulo, resi sicuri per Elementor */
.bay-gym-form .container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: slideIn 0.8s ease-out;
    border: 1px solid rgba(31, 142, 151, 0.2);
    margin: 40px auto; /* Aggiunto per centrare se il flex di body viene rimosso */
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.bay-gym-form .header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.bay-gym-form .header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1F8E97, #38424B);
    border-radius: 3px;
}

.bay-gym-form .header h1 {
    background: linear-gradient(135deg, #38424B, #1F8E97);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.bay-gym-form .header p {
    color: #38424B;
    font-size: 1.1em;
    font-weight: 500;
    opacity: 0.8;
}

.bay-gym-form .intro {
    background: linear-gradient(135deg, #1F8E97, #38424B);
    color: white;
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(31, 142, 151, 0.3);
    position: relative;
    overflow: hidden;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 25px rgba(31, 142, 151, 0.3); }
    50% { box-shadow: 0 15px 35px rgba(31, 142, 151, 0.5); }
}

.bay-gym-form .intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 4s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bay-gym-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.bay-gym-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #38424B;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.bay-gym-form .form-group input,
.bay-gym-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.bay-gym-form .form-group input:focus,
.bay-gym-form .form-group select:focus {
    outline: none;
    border-color: #1F8E97;
    background: white;
    box-shadow: 0 0 0 4px rgba(31, 142, 151, 0.1);
    transform: translateY(-1px);
}

.bay-gym-form .date-fields {
    display: none;
    margin-top: 15px;
    animation: fadeInUp 0.5s ease-out;
}

.bay-gym-form .date-fields.show {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bay-gym-form .date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bay-gym-form .whatsapp-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #20b358);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 15px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.bay-gym-form .whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.bay-gym-form .whatsapp-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.bay-gym-form .error {
    color: #e74c3c;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.bay-gym-form .required {
    color: #e74c3c;
}

@media (max-width: 750px) {
    .bay-gym-form .container {
        margin: 10px;
        padding: 25px;
    }
    .bay-gym-form .header h1 {
        font-size: 2em;
    }
    .bay-gym-form .date-row {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */