/* Apply flexbox layout to center the form on the login body */
body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.form-container {
	background-color: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 4px 5px 4px 5px rgba(0, 68, 114, 0.04),
		7px -7px 15.3px -5px rgba(79, 181, 152, 0.59),
		0px 6px 8.9px 5px rgba(178, 229, 255, 0.33),
		-5px 1px 8.2px 5px rgba(99, 90, 217, 0.15);
	width: 100%;
	max-width: 450px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.logo-container {
	margin-bottom: 20px;
}

.logo {
	width: 120px;
	height: 120px;
	margin: 0 auto 5px auto;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: bold;
	color: #004472;
	text-align: center;
}

.subtitle {
	text-align: center;
	margin-bottom: 30px;
	color: #777;
	font-size: 0.9rem;
}

.form-group {
	margin-bottom: 25px;
	text-align: left;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: normal;
	color: #555;
}

.input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
}

.input-with-icon i {
	position: absolute;
	left: 12px;
	color: #aaa;
	font-size: 1rem;
}

.input-with-icon input {
	width: 100%;
	padding: 12px 12px 12px 40px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
	outline: none;
}

.input-with-icon input:focus {
	border-color: #ccc;
	box-shadow: 4px 5px 4px 5px rgba(0, 68, 114, 0.04),
		7px -7px 15.3px -5px rgba(79, 181, 152, 0.59),
		0px 6px 8.9px 5px rgba(178, 229, 255, 0.33),
		-5px 1px 8.2px 5px rgba(99, 90, 217, 0.15);
	outline: none;
	transition: box-shadow 0.3s ease;
}

.button-group {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.btn-outline {
	background-color: transparent;
	border: 1px solid #009a83;
	color: #009a83;
}

.btn-outline:hover {
	background-color: rgba(0, 154, 131, 0.05);
}

.btn-primary {
	background-color: #009a83;
	color: #fff;
}

.btn-primary:hover {
	background-color: #007a66;
}

.links {
	margin-top: 20px;
	font-size: 0.9rem;
	display: flex;
	justify-content: space-between;
}

.links a {
	color: #004472;
	text-decoration: none;
	transition: color 0.3s ease;
}

.links a:hover {
	text-decoration: underline;
}
