/*
Theme Name:  ATTPS
Theme URI:   https://attps.fr/
Version:     3.0
Description: Theme Enfant Divi
Author:      ATTPS
Author URI:  https://attps.fr/
Template:    Divi
*/

/*- Add any CSS custom code for this child theme below this line -*/

/* Conteneur */
.contact-form .gfield {
    position: relative;
    margin-bottom: 25px;
}

/* Label positionné comme un placeholder */
.contact-form .gfield_label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    pointer-events: none;
    padding: 0 4px;
    opacity: 0.6;
}

.contact-form input,
.contact-form textarea {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .gfield--type-textarea .gfield_label {
    top: 25px;
}

/* Quand l'input est focus ou non vide */
.contact-form .gfield.filled .gfield_label,
.contact-form .gfield.focused .gfield_label {
    top: -8px;
    opacity: 1;
}