/* CSS per Form con Animazioni GSAP */

.gsap-form-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Background con pattern di icone */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    /* background-image: url('https://local.dev.amnesty.it/Icone-Background-black.jpg');
    background-repeat: repeat;
    background-size: 200px; */
}

/* Contenitore animazioni */
.animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Stile per l'icona attivamente selezionata */
.active-icon,
.waiting-icon {
    display: inline-block;
    width: 120px;
    height: 120px;
    vertical-align: middle;
    z-index: 10;
}

.active-icon svg,
.waiting-icon svg {
    width: 100%;
    height: 100%;
}

/* Placeholder per l'icona */
.icon-placeholder {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 10px;
    vertical-align: middle;
    opacity: 0;
}

/* Stile per le icone nel background */
.background-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.background-icon svg {
    width: 100%;
    height: 100%;
}

/* Form container */
.form-container {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    padding: 30px;
}

/* Personalizzazione dei campi Gravity Forms */
/* .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper select {
    position: relative;
    z-index: 10;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    border: 1px solid #ddd !important;
    width: 100% !important;
    margin-top: 5px !important;
}

.gform_wrapper .gform_footer input.button, 
.gform_wrapper .gform_footer input[type=submit] {
    background-color: #4A90E2;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    position: relative;
    z-index: 10;
}

.gform_wrapper .gform_footer input.button:hover, 
.gform_wrapper .gform_footer input[type=submit]:hover {
    background-color: #357ABD;
} */

/* Nascondi il contenitore dei template SVG */
.svg-templates {
    display: none !important;
}