/* =======================
    FORMULAIRE SUIVI
======================= */

#formulaire-suivi {
    text-align: center;
}

/* container principal */
.formulaire {
    max-width: 800px;
    margin: 3em auto;
    padding: 2em;

    display: flex;
    flex-direction: column;
    gap: 1.5em;

    background: var(--bg-doux);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
}

/* lignes du formulaire */
.form-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* labels */
.form-row label {
    width: 220px;
    font-weight: 600;
    padding-top: 10px;
}

/* container des champs */
.input-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* champs input et textarea */
.input-container input,
.input-container textarea,
.select-style {

    width: 100%;
    padding: 12px 14px;

    border: 1px solid var(--border-soft);
    border-radius: 6px;

    font-family: var(--font-Google_Sans_Flex);
    font-size: 1rem;

    background: var(--bg);

    transition: all 0.2s ease;
}

/* hover */
.input-container input:hover,
.input-container textarea:hover,
.select-style:hover {
    border-color: var(--accent);
}

/* focus */
.input-container input:focus,
.input-container textarea:focus,
.select-style:focus {
    outline: none;
    border-color: var(--accent-hover);
    box-shadow: 0 0 0 2px rgba(255, 184, 120, 0.25);
}

/* textarea message */
.message-row textarea {
    min-height: 150px;
    resize: vertical;
}

/* =======================
    SELECT STYLE
======================= */

.select-container {
    position: relative;
}

/* flèche custom */
.select-container::after {

    content: "▼";

    position: absolute;
    right: 14px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 0.75rem;
    color: var(--text-principal);

    pointer-events: none;
}

/* supprimer style natif */
.select-style {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* options */
.select-style option {
    background: var(--bg);
    color: var(--text-principal);
}

/* =======================
    BOUTON
======================= */

.form-bouton {
    text-align: center;
}

.form-bouton button {

    background: var(--accent);
    color: var(--text-principal);

    border: 1px solid var(--border-soft);
    padding: 12px 30px;

    border-radius: 50px;
    font-weight: 600;

    transition: all 0.25s ease;
}

.form-bouton button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}