body {
    font-family: Arial, sans-serif;
    background-color: #98a18f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
/* Styles pour les écrans de bureau */
body {
    font-size: 16px;
}

/* Styles pour les écrans de tablettes */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

/* Styles pour les écrans de smartphones */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
}
.login-container {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    width: 200px;
}

h1 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
	font-size: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button.login-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #FFD700;
    color: #black;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
	
}

button.login-button:hover {
    background-color: #777777;
}
