body {
	margin: 0;
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		"Open Sans",
		"Helvetica Neue",
		sans-serif;
	background: #f4f6fb;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.login-container {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 320px;
}

h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #2b6ef6;
}

#groupContainer {
	display: flex;
	justify-content: space-between;
}

label,
#forgotPass {
	font-size: 14px;
	color: #333;
	transition: 0.5s;
}

#forgotPass:hover {
	text-decoration: underline;
	color: #2b6ef6;
	cursor: pointer;
}

input[type="email"],
input[type="password"] {
	width: calc(100% - 20px);
	padding: 10px;
	margin-top: 6px;
	margin-bottom: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
}

button {
	width: 100%;
	padding: 12px;
	background: #2b6ef6;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	margin-top: 10px;
	transition:
		background-color 0.2s,
		transform 0.1s;
}

button:hover {
	background-color: #1f5be0;
}

button:active {
	transform: scale(0.97);
}

button[type="submit"]:disabled {
	background-color: gray;
}

#error-box {
	background: #ffdddd;
	color: #a00;
	padding: 10px;
	margin-bottom: 15px;
	border-left: 4px solid #a00;
	border-radius: 6px;
}

#requiredStar {
	color: red;
}
