/* =========================
   PSYNERGIA JT – STYLE ULTRA LISIBLE
   ========================= */

.psynergia-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #0b0b12;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    color: #ffffff;
    font-family: system-ui, Arial, sans-serif;
}

/* BANNIÈRE PSYNERGIA */

.psynergia-header {
    text-align: center;
    margin-bottom: 18px;
}

.psynergia-header img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* TITRES */

.psynergia-container h2 {
    text-align: center;
    color: #ffffff;
    margin-top: 10px;
    font-size: 28px;
}

.psynergia-container p {
    text-align: center;
    color: #dddddd;
    margin-bottom: 25px;
    font-size: 15px;
}

/* FORMULAIRE */

.psynergia-form fieldset {
    border: none;
    padding: 15px;
    margin-bottom: 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
}

.psynergia-form legend {
    font-size: 14px;
    font-weight: bold;
    color: #ffb3e6;
    margin-bottom: 8px;
}

.psynergia-form label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff;
}

/* =========================
   INPUTS ULTRA LISIBLES
   ========================= */

.psynergia-form input,
.psynergia-form select,
.psynergia-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 8px;

    /* FOND CLAIR */
    background: #ffffff !important;

    /* TEXTE NOIR */
    color: #000000 !important;

    /* BORDURE VISIBLE */
    border: 2px solid #784ba0;

    font-size: 16px;
    font-weight: 500;
}

/* Placeholder lisible */

.psynergia-form input::placeholder,
.psynergia-form textarea::placeholder {
    color: #666666;
    font-weight: 400;
}

/* Focus (quand on clique dedans) */

.psynergia-form input:focus,
.psynergia-form select:focus,
.psynergia-form textarea:focus {
    outline: none;
    border-color: #ff3cac;
    box-shadow: 0 0 0 3px rgba(255,60,172,0.25);
    background: #ffffff;
    color: #000000;
}

/* BOUTON */

.psynergia-form button {
    width: 100%;
    margin-top: 22px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #ff3cac, #784ba0, #2b86c5);
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.psynergia-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(255,60,172,0.35);
}

/* ERREUR */

.psynergia-error {
    padding: 15px;
    background: #300;
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

/* MOBILE */

@media (max-width: 600px) {
    .psynergia-container {
        padding: 18px;
        margin: 15px;
    }

    .psynergia-form input,
    .psynergia-form select,
    .psynergia-form textarea {
        font-size: 17px;
    }
}
