/* Additional styles for centering the login form */

.login-messages {
	margin-top: 4rem;
}

.login-container {
	height: fit-content;
	margin-top: 80px;
	display: flex;
	justify-content: center;
	/* align-items: center; */
}

.login-form {
	width: 100%;
	max-width: 400px;
	padding: 30px;
	border-radius: 10px;
	/* background-color: #ffffff; */
	background-color: rgb(244, 243, 243);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.register-form {
	width: 100%;
	max-width: 1000px;
	padding: 30px;
	border-radius: 10px;
	/* background-color: #ffffff; */
	background-color: rgb(244, 243, 243);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Prevent scrolling */
html,
body {
	height: 100%;
	overflow: hidden; /* Disable scrolling */
}
