
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('menu-images/fond.jpg'); /* Image de fond */
    background-size: cover; /* Redimensionne l'image pour couvrir tout l'arrière-plan */
    background-position: center; /* Centre l'image de fond */
    font-family: Arial, sans-serif;
}
.login-form {
    text-align: center;
}
input[type="password"] {
    padding: 10px;
    background-color: #f0f0f092;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid #f0f0f071;

}
input[type="text"] {
    padding: 10px;
    background-color: #f0f0f092;
    margin-bottom: 5px;
    border-radius: 10px;
    border: 2px solid #f0f0f071;

}
button {
    padding: 10px 20px;
    background-color: #f0f0f092;
    border-radius: 10px;
    border: 2px solid #f0f0f071;
    cursor: pointer;
}
button:hover {
    transform: scale(1.05); /* Zoom au survol */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Ombre portée au survol */
    transition: 0.15s;
}
