body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #fffbf5, #fff0e5);
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-compatibilite {
    background: #fffefc;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 480px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
}

fieldset {
    border: none;
    margin-bottom: 20px;
    padding: 0;
}

legend {
    font-size: 1.2rem;
    font-weight: bold;
    color: #5d4037;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 12px;
    font-weight: 500;
}

input[type="text"] {
    width: 90%;
    padding: 10px 14px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: #e57373;
    outline: none;
    box-shadow: 0 0 5px rgba(229, 115, 115, 0.5);
}

button[type="submit"] {
    background: #d81b60;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background 0.3s, box-shadow 0.3s;
}

button[type="submit"]:hover {
    background: #ad1457;
    box-shadow: 0 4px 12px rgba(173, 20, 87, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}







.encadre-partenaire {
    background: #F3E5F5;
    border: 2px solid #BA68C8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(186, 104, 200, 0.3);
}

fieldset {
    border: none;
}

legend {
    font-weight: bold;
    color: #6A1B9A;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
}

.btn-valider {
    background-color: #8E24AA;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(142, 36, 170, 0.4);
    transition: background 0.3s ease;
}

.btn-valider:hover {
    background-color: #6A1B9A;
}
