/* Add these styles to your style_login.css file */

/* General styles for the page */
body {
	font-family: Arial, sans-serif;
	background-color: #f5f5f5;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.wrapper {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
	max-width: 400px;
	width: 90%;
}

h2 {
	color: #333;
}

/* Logo styles */
.logo {
	width: 100%;
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto 20px;
}

/* Form styles */
form {
	margin-top: 20px;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	font-weight: bold;
}

.input-group {
	display: flex;
	flex-direction: column;
}

.input-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.help-block {
	color: #d9534f;
}

.btn-primary {
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: #0056b3;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
	.wrapper {
		max-width: 90%;
	}

	.logo {
		max-width: 150px;
	}
}
/* Add these styles to your style_login.css file */

/* General styles for the page */
body {
	font-family: Arial, sans-serif;
	background-color: #f5f5f5;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.wrapper {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
	max-width: 400px;
	width: 90%;
}

h2 {
	color: #333;
}

/* Logo styles */
.logo {
	width: 100%;
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto 20px;
}

/* Form styles */
form {
	margin-top: 20px;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	font-weight: bold;
}

input[type="email"],
input[type="submit"] {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	color: #fff; /* Match the text color of login button */
	cursor: pointer;
}

input[type="submit"]:hover {
	background-color: #0056b3;
}

.help-block {
	color: #d9534f;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
	.wrapper {
		max-width: 90%;
	}

	.logo {
		max-width: 150px;
	}
}
