/* ========================= */
/* 🌟 STYLES GÉNÉRAUX */
/* ========================= */
.contact-form {
    padding: 20px;
    background: var(--bs-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 35px
}

.contact-form .form-group-label {
    font-size: 0.7rem;
    display: block;
    display: none;

}

.contact-form .contact-consent,
.contact-form .mentions-rgpd p {

    font-size: 0.85rem;

    line-height: 1.4;
}

.contact-form textarea {
    height: 120px;
}

.contact-form .contact-consent {
    padding-left: 25px;
    position: relative;
}

.contact-form .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #999 !important;
    border-radius: 0 !important;
}

.contact-form .contact-consent input {
    position: absolute;
    top: 4px;
    left: 0;
}

/* ========================= */
/* ✅ CHECKBOX */
/* ========================= */
.contact-consent input[type="checkbox"] {
    margin-right: 8px;
}

/*
.contact-result {
    display: none;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
}


.contact-result.success {
    display: block;
    background: var(--bs-success-bg-subtle);
    color: var(--bs-success-text-emphasis);
    border: 1px solid var(--bs-success-border-subtle);
}

.contact-result.error {
    display: block;
    background: var(--bs-danger-bg-subtle);
    color: var(--bs-danger-text-emphasis);
    border: 1px solid var(--bs-danger-border-subtle);
}

*/