/* Réinitialisation des marges et des paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Style du body */
body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Conteneur principal */
.container {
    background-color: white;
    padding: 40px;
    width: 400px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 
    border-radius: 8px;
    text-align: center;
}

/* Logo */
.login-container img {
    width: 60px;
    margin-bottom: 20px;
}

/* Titres */
h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Champs de saisie */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Boutons */
button {
    width: 100%;
    padding: 12px;
    background-color: #0070ba;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #005ea6;
}

/* Message d'alerte */
.alert {
    display: none;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: white;
    text-align: center;
}

.alert.error {
    background-color: #d9534f;
}

.alert.success {
    background-color: #5cb85c;
}

/* Séparateur */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider span {
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

/* Bouton Créer un compte */
.create-account {
    background-color: #0070ba;
    color: #ffffff;
    border: 1px solid #0070ba;
}

.create-account:hover {
    background-color: #005ea6;
    color: white;
}

/* Footer principal */
footer {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* Footer hors du container */
.footer-container {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-container a {
    margin: 0 10px;
    text-decoration: none;
    color: #666;
}

.footer-container a:hover {
    text-decoration: underline;
}
p {

    margin-top: 1px;
    text-align: left;
    font-size: 17px;
    color: rgb(24, 103, 177);
    text-emphasis: 10px;
}