body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #f8f9fa;
	flex-direction: column;
}

.login-container {
	max-width: 400px;
	width: 100%;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-container h3 {
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
}

.form-group {
	margin-bottom: 15px;
}

.form-inline {
	justify-content:center; 
	flex-direction:column;
}

.form-control {
	border-radius: 5px;
}

.btn-primary {
	width: 50%;
	padding: 10px;
	border-radius: 5px;
}

.text-danger {
	font-size: 0.9rem;
}

.footer {
	text-align: center;
	margin-top: 20px;
	font-size: 0.85rem;
	color: #6c757d;
}