/* Style général */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Header */
.header-container {
    background-color: #2c5981;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
}

.header-container .logo img {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    height: 50px;
}

.header-container h1 {
    margin: 0;
    font-size: 2rem;
}

/* Section principale */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

/* Champs du formulaire */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #2c5981;
    outline: none;
    box-shadow: 0 0 4px rgba(44, 89, 129, 0.5);
}

/* Bouton de soumission */
.btn-submit {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #2c5981;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234766;
}

/* Footer */
.footer-container {
    text-align: center;
    padding: 1rem;
    background-color: #2c5981;
    color: white;
    font-size: 0.9rem;
}

.footer-container ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.footer-container ul li {
    display: inline;
    margin: 0 10px;
}

.footer-container ul li a {
    color: white;
    text-decoration: none;
}

.footer-container ul li a:hover {
    text-decoration: underline;
}
