/* Conteneur du formulaire de connexion */
.login-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Conteneur d administration */
.admin-container {
    background-color: rgba(0, 0, 0, 0.7);
	margin-top: 20px;
	--padding: 40px;
    border-radius: 8px;
    width: 95%;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Titre de la page de connexion */
.titre {
    font-family: arial;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0px;
    background: linear-gradient(90deg, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Champs du formulaire */
.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    color: #e5e7eb;
    display: block;
    margin-bottom: 10px;
}

/* Champs de saisie */
input[type="text"], input[type="password"], input[type="email"], input[type="checkbox"], input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 40px;
    font-size: 1rem;
    background: transparent;
    color: #e5e7eb;
    transition: border-color 0.3s ease;
}

/* Champs de choix */
select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 40px;
    font-size: 1rem;
    background: transparent;
    color: #e5e7eb;
    transition: border-color 0.3s ease;
}

/* Champs de textarea */
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 40px;
    font-size: 1rem;
    background: transparent;
    color: #e5e7eb;
    transition: border-color 0.3s ease;
}

/* Champs de saisie en focus */
input[type="text"]:focus, input[type="password"]:focus {
    border-color: #6366f1;
    outline: none;
}

/* Bouton de soumission */
button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(99,102,241,0.4);
    transition: transform .3s ease, box-shadow .3s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(99,102,241,0.6);
}

/* Message d'erreur */
.error {
    color: red;
    font-size: 14px;
}
