/* === BASE === */
body, td {
    color: #2c3e50;
    /*font-family: 'Segoe UI', Arial, sans-serif;*/
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    background-color: #f5f5f5;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);*/
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
}

div, form, input, h1, h2, h3, h4, span, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFE600;
}

sup {
    color: #e74c3c;
    font-size: 0.85em;
}

.clearb {
    clear: both;
}

.small, .small a {
    font-size: 11px;
    color: #7f8c8d;
}

div.alignecentre {
    text-align: center;
    margin: auto;
}

/* === FORMULAIRE === */
.form1 {
    width: 100%;
    max-width: 320px;
    /*font-family: 'Segoe UI', Arial, sans-serif;*/
    font-family: 'Barlow', sans-serif;
    color: #2c3e50;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    /*border-radius: 8px;*/
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form1:focus {
    border-color: #FFE600;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.2);
}

/* === BOUTON PRINCIPAL === */
.formbt {
    /*font-family: 'Segoe UI', Arial, sans-serif;*/
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Fond noir, texte jaune */
    background-color: #1a1a1a;
    color: #FFE600;
    
    border: 2px solid #1a1a1a;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Rectangulaire */
    border-radius: 0;
}

.formbt:hover {
    /* Inversé: fond jaune, texte noir */
    background-color: #FFE600;
    color: #1a1a1a;
    border-color: #FFE600;
}

.formbt:active {
    transform: scale(0.98);
}

/* === FIELDSET & LEGEND === */
fieldset {
    border: 1px solid #e0e0e0;
    /*border-radius: 12px;*/
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0;
}

legend {
    font-family: 'Barlow Condensed', sans-serif;
    color: #1a1a1a;
    padding: 0.3em 1.5em;
    font-weight: 600;
    font-size: 1.4em;
    text-transform: uppercase;
    /*padding: 0 12px;*/
    background: #FFE600;
    /*border-radius: 4px;*/
}

/* === LABELS === */
.coord label {
    float: left;
    width: 180px;
    text-align: right;
    margin: 0 0 12px 0;
    padding: 8px 12px 8px 0;
    clear: both;
    font-weight: 500;
}

#interest label {
    margin: 0 0 12px 24px;
    padding: 4px 8px;
    clear: both;
}

/* === INPUTS GÉNÉRAUX === */
.formcontact input[type="text"],
.formcontact input[type="tel"],
.formcontact input[type="email"],
.formcontact select,
.formcontact textarea {
    margin: 6px 0 12px 0;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.formcontact input:focus,
.formcontact select:focus,
.formcontact textarea:focus {
    border-color: #FFE600;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.2);
}

/* === CHECKBOX CUSTOM === */
.formcontact input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FFE600;
    cursor: pointer;
}
