body {
	height: 100vh;
	align-items: center;
	justify-content: center;
	background-color: #f7f7f7;
}

.loginBox {
	background-color: #ffffff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	padding: 40px;
	border-radius: 10px;
	max-width: 400px;
	width: 100%;
}

img {
	width: 200px;
	margin: 0 auto 20px auto;
}

h1 {
	color: #b71938;
	margin-bottom: 20px;
	font-size: 26px;
}

label {
	display: block;
	text-align: left;
	margin: 12px 0 4px 0;
	font-weight: bold;
	color: #333;
	font-size: 15px;
}
  
input[type="text"],
input[type="password"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	margin-bottom: 10px;
	background-color: #fff;
	transition: border 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="password"]:focus {
	border-color: #005292;
	outline: none;
}
  
button {
	font-size: 18px;
	height: 45px;
	width: 100%;
	background-color: #005292;
	color: #fff;
	border-radius: 6px;
	margin-top: 20px;
	transition: background-color 0.2s ease-in-out;
}

button:hover {
	background-color: #003f6b;
}

.messages {
	text-align: center;
	margin-top: 15px;
}

.messages p {
	color: #d9534f;
	font-weight: bold;
}

@media (max-width: 600px) {
	body {
		background-color: #fff;
	}
	.loginBox {
		border: none;
		box-shadow: none;
		padding: 20px;
		margin: 20px;
		width: 100%;
	}
}
