/* Style général */
body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    text-align: center;
    width: 400px;
}

.logo {
    width: 150px;
    margin-bottom: 30px;
}

/* Champs de texte */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    width: 90%; /* Ajuste la largeur ici */
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    background-color: #f9f9f9;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s;
    opacity: 0.5;
    margin: 0 auto; /* Centrer les champs */
}


input[type="text"]:focus, input[type="password"]:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 1;
}

/* Bouton de connexion */
.btn-connexion {
    width: 100%;
    padding: 15px;
    background-color: #e9435e;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-connexion:hover {
    background-color: #ff5b73;
}

/* Lien mot de passe oublié */
.forgot-password {
    margin-top: 20px;
}

.forgot-password a {
    color: #e9435e;
    text-decoration: underline;
    font-size: 14px;
}

/* Style du texte pour le lien de mot de passe oublié */
.forgot-password a:hover {
    text-decoration: none;
}