/* 
    Created on : 16 avr. 2026, 09:31:31
    Author     : GRICOLAT D.
*/

.rgpd-container {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #2563eb; /* couleur principale (à adapter à ton logo) */
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


output{
  padding: 20px 0px;
  display: block;
  background: linear-gradient(170deg, #eaeffe, #ecf0ff,#f4f7ff);
  font-size: 18px;
  text-indent:5px;
  color: #ff6363;
  text-align: center;
}


.ajust-img-head img{
    transition: width 1s;
    min-width: 100%;
    vertical-align: center;
    opacity: 0.35;
}

.rgpd-text {
    margin-bottom: 12px;
    text-align: justify;
}

.rgpd-text strong {
    color: #111827;
}

.rgpd-consent {
    display: flex;
    align-items: flex-start;
    gap:8px;
    margin-bottom: 15px;
    padding-top: 5px;
    /*border-top: 1px solid #e5e7eb;*/
}

.rgpd-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #2563eb; /* couleur checkbox moderne */
    cursor: pointer;
    width:inherit;
}

.rgpd-consent label {
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .rgpd-container {
        padding: 15px;
        font-size: 13px;
    }


}
.rgpd-consent {
    /*flex-direction: column;*/
    align-items: flex-start;
}

p.sctn-red-info{
    padding: 10px 0px;
    color: darkblue;
    font-weight:lighter;
    font-size: 17px;
}


/*-------------*/
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    /*flex-direction: column;*/
    gap: 5px;
    background-color: #ededff;
    padding: 5px 22px;
    border-radius: 6px;
    width:100%;
}

.radio-group {
    display: flex;
    gap: 20px;
    padding:0px;
    color: gray;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }


}

form input[type="radio"] {
    width:20px;
    /*padding:10px;*/
    margin-right:15px;
    border-radius:6px;
    border: 1px solid #ccc;
}

form input::placeholder,form textarea::placeholder{
    font-size:16px;
    color:#0062ccab;
    font-style: italic;
}


form label {
    font-size:16px;
    color: #0062ccab;
    font-style: italic;
}

.submit-btn{
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing:1px;
    cursor:pointer;
}