/* index2.css */

/* Style général du corps */
body {
    font-family: Arial, sans-serif;
    background-color: #1f94f1;
    margin: 0;
    padding: 0;
}

/* Conteneur principal */
.container {
    width: 95%;
    margin: auto;
    overflow: hidden;
}

/* Style de l'en-tête */
.header {
    background: #1f94f1;
    color: #ffffff;
    padding: 0px;
    text-align: center;
}

/* Titre */
.title {
    font-size: 2em;
    margin: 0;
}

/* Style des champs de saisie */
.input-field {
    width: 95%;
    padding: 5px;
    margin: 0px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style du bouton de soumission */
.btn-submit {
    background: #3a7adb;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

/* Style du bouton de soumission au survol */
.btn-submit:hover {
    background: #000000;
}

/* Lien de connexion */
a {
    color: #35424a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}