/* Styles de base pour le formulaire */
form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styles pour les labels */
form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Styles pour les champs de saisie */
form input[type="text"],
form input[type="password"],
form input[type="email"] {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s;
}

form input[type="text"]:focus,
form input[type="password"]:focus {
    border-color: #007BFF;
}

/* Styles pour le bouton de soumission */
form input[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #FF9800;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #E65100;
}

/* Style pour le lien de retour */
.acc a {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

.acc a:hover {
    color: #0056b3;
}

.acc button {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    padding: 1em;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.acc button:hover {
    background-color: #0056b3;
}

#sign_up{
    display: none;
}