body {
    background-color: #1e3a8a; /* bleu foncé */
    color: #000;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
}

.form-container h1 {
    font-size: 22px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.form-container h2 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.form-container p {
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #1e3a8a;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #2a4dbb;
}

.confidentialite {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo {
    max-width: 120px;
    height: auto;
}
