@charset "UTF-8";
/* CSS Document */
body { 
	font-family: sans-serif; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	height: 100vh; 
	background-color: #f0f2f5; 
}
#login-form {
	background: white; 
	padding: 2rem; 
	border-radius: 8px; 
	box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	width: 300px; 
}
    h1 { text-align: center; color: #333; }
    label { display: block; margin-bottom: 0.5rem; color: #555; }
    input { width: 100%; padding: 0.5rem; margin-bottom: 1rem; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
    button { width: 100%; padding: 0.75rem; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 1rem; }
    button:hover { background-color: #0056b3; }
    #message { margin-top: 1rem; text-align: center; color: red; }
