body, html {
	font-family: "Calibri", sans-serif;
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden;
}


.container {
	display: flex;
	height: 100vh;
}

.image-section {
	flex: 1;
	background: linear-gradient(rgba(52, 58, 64, 0.8), rgba(52, 58, 64, 0.8)),
		url('./images/3.png') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	padding: 2rem;
}

.image-section h2 {
	font-size: 2.5rem;
	margin-top: 70%;
	font-style: italic;
}

.image-section p {
	font-size: 1.2rem;
	text-align: center;
	max-width: 80%;
}

.login-section {
	flex: 1;
	background-color: #f7f9fc;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

.login-card {
	background-color: white;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
}

.login-card img {
	display: block;
	margin: 0 auto 2rem;
	max-width: 200px;
}

.login-card h1 {
	text-align: center;
	color: #343a40;
	margin-bottom: 2rem;
	font-size: 1.8rem;
}

input[type="text"], input[type="password"] {
	width: 100%;
	padding: 12px;
	margin-bottom: 1.5rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="password"]:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

button {
	width: 100%;
	padding: 12px;
	background-color: #343a40;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #0056b3;
}

.error-message {
	color: #dc3545;
	text-align: center;
	margin-top: 1rem;
	font-size: 0.9rem;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #343a40;
	color: white;
	text-align: center;
	font-size: 0.9rem;
}

/* Modal Styles */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	overflow: auto;
}

.modal-content {
	background: #ffffff;
	padding: 3% 7% 7% 7%;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	position: relative;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	animation: fadeIn 0.3s ease-out;
}

.modal .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.modal .close:hover {
	color: #ff0000;
}