/* Appliquer une police moderne */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);  /* Couleur de fond en dégradé */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container pour la boîte de login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Boîte de connexion */
.login-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 400px;
    text-align: center;
}

/* Titre de la page de connexion */
.login-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Groupe d'input avec icône */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

/* Icônes à côté des champs de texte */
.input-group i {
    color: #888;
    margin-right: 10px;
}

/* Champ de saisie */
.input-group input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
}

/* Bouton de connexion */
.login-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background-color: #2575fc;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #1a5dc9;
}

/* Lien d'inscription */
.signup-text {
    margin-top: 20px;
}

.signup-text a {
    color: #2575fc;
    text-decoration: none;
}

.signup-text a:hover {
    text-decoration: underline;
}

