/* 🌍 Style global */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fdf6e3, #ffe4c4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* 🔐 Conteneur de connexion */
.login-container {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 0.7s ease;
}

/* 🖼️ Logo */
.login-container img {
    width: 200px;
}

/* 📝 Titre */
.login-container h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

/* ✍️ Champs de formulaire */
.login-container input {
    width: 100%;
    padding: 12px 15px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.login-container input:focus {
    border-color: #007bff;
    outline: none;
}

/* 🔘 Bouton */
.login-container button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    font-size: 16px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-container button:hover {
    background: #218838;
}

/* 🔄 Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .login-container h2 {
        font-size: 20px;
    }
}
.footer-bench {
    text-align: center;
    position: fixed;
    bottom: 10px;
    width: 100%;
    color: #343434;
    font-size: 0.9em;
}