/* Style général */
body {
    background: linear-gradient(135deg, #6fee6f, #29e318); /* Fond vert modifié */
    font-family: 'Poppins', sans-serif;
}

/* Section d'authentification */
.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Carte de connexion/inscription */
.auth-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.auth-card:hover {
    transform: translateY(-5px);
}

/* Titre */
.auth-card h2 {
    font-weight: bold;
    color: #333;
}

/* Labels et champs */
.form-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0px 0px 5px rgba(102, 126, 234, 0.5);
}

/* Boutons */
.btn-primary {
    background: #1a8f3a;
    border: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #15732f;
}

/* Bouton Google */
.btn-outline-dark {
    border: 1px solid #333;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

/* Liens */
.text-center a {
    color: #23ec3a;
    font-weight: bold;
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 20px;
    }
}
