/* IMPORT POLICE */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

/* COULEURS SANKEO */
a { color: #D60B52; }
a:hover { text-decoration: none; color: #a3003b; }

.text-primary { color: #D60B52 !important; }
.btn-primary { 
    background-color: #D60B52 !important; 
    border-color: #D60B52 !important;
}

/* STYLE DES CHAMPS DU FORMULAIRE ZENDESK */
.request-form label {
    font-weight: 700;
    margin-top: 15px;
    display: block;
}

.request-form input, 
.request-form textarea, 
.request-form select {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0; /* Carré comme le site */
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.request-form input:focus, 
.request-form textarea:focus, 
.request-form select:focus {
    border-color: #D60B52;
    outline: 0;
}

/* BOUTON ENVOYER */
.request-form input[type="submit"] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #D60B52;
    color: white;
    border: 1px solid #D60B52;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 20px;
    width: 100%;
    cursor: pointer;
}

/* --- CUSTOMISATION DU MODULE FORMULAIRE JS --- */

/* 1. Les Labels (Titres des champs) */
#new-request-form label {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

/* 2. Les Champs (Inputs, Selects, Textarea) */
#new-request-form input,
#new-request-form textarea,
#new-request-form select {
    border: 1px solid #ccc;
    border-radius: 0 !important; /* Force les coins carrés */
    background-color: #f9f9f9;
    padding: 10px;
    color: #333;
    width: 100%;
}

/* Focus : Quand on clique dedans (Le Rose Sankéo) */
#new-request-form input:focus,
#new-request-form textarea:focus,
#new-request-form select:focus {
    border-color: #D60B52;
    box-shadow: 0 0 5px rgba(214, 11, 82, 0.2);
    outline: none;
    background-color: #fff;
}

/* 3. Le bouton Envoyer (Souvent caché dans un footer généré) */
#new-request-form footer button,
#new-request-form button[type="submit"] {
    background-color: #D60B52 !important;
    border-color: #D60B52 !important;
    color: white !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
}

#new-request-form footer button:hover {
    background-color: #a3003b !important;
}

/* 4. Cacher le lien "Ajouter une pièce jointe" si tu veux le styliser autrement */
#new-request-form .upload-dropzone {
    border: 1px dashed #ccc;
    background: #fafafa;
}