 body {
            background: url("images/Backaccueil.png") no-repeat;
			font-family: Calibri;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;	
        }
		 
.login-container {
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            width: 300px;
            text-align: center;
        }

input[type="password"] {
            width: 100%;
            padding: 0.5rem;
            margin: 1rem 0;
            border-radius: 4px;
            border: 1px solid #ccc;
        }

button {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 4px;
            background: #0077cc;
            color: white;
            cursor: pointer;
            font-size: 1rem;
        }

button:hover {
            background: #005fa3;
        }

.error {
            color: red;
            margin-top: 1rem;
        }