/* Basic layout styling */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #f4f4f9;
	padding-top: 70px;
	padding-bottom: 60px;
}

/* Header styling */
header {
	background-color: skyblue;
	color: white;
	padding: 15px 10px;
	text-align: center;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

header img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

/* Footer styling */
footer {
	background-color: skyblue;
	color: white;
	text-align: center;
	padding: 10px;
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 10;
}

/* Container for the form */
.login-container {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

/* Input styling */
.login-container input {
	width: 100%;
	padding: 0.75rem;
	margin: 0.5rem 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}

/* Styling for the buttons */
.pill-button {
	display: block;
	width: 100%;
	padding: 1rem;
	background-color: skyblue;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 50px;
	transition: background-color 0.3s ease;
	font-size: 1.1rem;
	margin-top: 1rem;
}

/* Hover effect */
.pill-button:hover {
	background-color: aqua;
}

/* styling for forgot password */
.forgot-password {
	display: block;
	margin-top: 1rem;
	color: #4a90e2;
	text-decoration: none;
	font-size: 0.9rem;
}

.forgot-password:hover {
	text-decoration: underline;
}
