.container-header .grid-child {
    display: none!important;
}

#acym_wrapper .acym__unsubscribe__page .acym__unsubscribe__form__container .acym__unsubscribe__lists__container .acym__unsubscribe__lists__listing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}
/* ========================================================
   FORZATURA CSS PER FORM DI REGISTRAZIONE ACYMAILING
   (Campi ingranditi, Label Nere, Pulsante #ff0054)
   ======================================================== */

/* 1. Forza Etichette e Titoli (es. Data nascita) a stare sopra i campi e in NERO */
form label,
.acym__users__creation__fields__title {
    display: block !important;
    margin-top: 20px !important;  /* Aumentato spazio sopra */
    margin-bottom: 8px !important; /* Aumentato spazio sotto */
    font-weight: 600 !important;
    font-size: 15px !important; /* Etichette leggermente più grandi */
    color: #333333 !important; 
    text-align: left !important;
    width: 100% !important;
}

/* 2. Layout per Giorno / Mese / Anno (Affiancamento con Flexbox) */
form .grid-x {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px !important; /* Aumentato lo spazio tra le tendine */
    width: 100% !important;
}
form .grid-x > .cell {
    flex: 1 !important;
    margin: 0 !important;
    width: auto !important;
}

/* 3. Stile unificato per Campi di testo e Tendine (Select) INGRANDITI */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 10px !important; /* Padding orizzontale ridotto a 10px per non tagliare "Giorno" */
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
    background-color: #fcfcfc !important;
    color: #333333 !important;
    height: 52px !important; /* CAMPI PIÙ ALTI (erano 45px) */
    font-size: 16px !important; /* TESTO PIÙ GRANDE (migliore leggibilità) */
    line-height: 1.2 !important;
    font-family: inherit !important;
}

/* 4. Effetto focus sui campi (quando ci clicchi dentro) */
form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus {
    border-color: #ff0054 !important; /* Bordo abbinato al pulsante */
    outline: none !important;
    box-shadow: 0 0 5px rgba(255, 0, 84, 0.4) !important;
}

/* 5. PULSANTE ISCRIVITI: Sfondo #ff0054 e testo bianco */
form button,
form input[type="submit"],
form input[type="button"],
.btn-primary {
    background-color: #ff0054 !important; 
    background-image: none !important; 
    color: #ffffff !important; 
    border: none !important;
    width: 100% !important;
    padding: 16px 20px !important; /* Pulsante leggermente più alto */
    margin-top: 30px !important;
    border-radius: 6px !important;
    font-size: 17px !important; /* Testo pulsante più grande */
    font-weight: bold !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    display: block !important;
}

/* Effetto al passaggio del mouse sul pulsante */
form button:hover,
form input[type="submit"]:hover,
form input[type="button"]:hover,
.btn-primary:hover {
    background-color: #d90047 !important; 
}

/* 6. Aggiusta la spaziatura generale del contenitore del form */
form {
    padding: 20px !important;
    box-sizing: border-box !important;
}