html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: white;
	background-size: cover;
}

#mainNavbar .logo-wrapper {
	height: 50px;
	overflow: visible;
	display: flex;
	align-items: center;
}

#mainNavbar .logo-img {
	height: 60px;
	max-width: 220%;
	border-radius: 10px;
	object-fit: contain;
}

/* Centering the form */
.center-page {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 2rem;
}

/* Card Styles */
.glass-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 1rem;
	border: 1px solid #ddd;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	color: #333;
	padding: 2rem;
	width: 100%;
}

/* Form sizing */
.reset-container {
	max-width: 450px;
	width: 100%;
}

.form-label {
	font-weight: 600;
	color: #333;
}

.form-control {
	border-radius: 0.5rem;
}

.custom-btn {
	background-color: rgb(255, 70, 70);
	color: #fff;
	font-weight: 600;
	border: none;
	border-radius: 0.5rem;
	box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
	transition: all 0.3s ease;
}

.custom-btn:hover {
	background-color: rgb(255, 50, 50);
	transform: scale(1.02);
}

.white-links a {
	color: #007bff !important;
	font-weight: 500;
	text-decoration: none;
}

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

.alert {
	border-radius: 0.5rem;
}

@media (max-width: 576px) {
	.glass-card {
		padding: 1.5rem;
	}

	h2 {
		font-size: 1.5rem;
	}
}