.signuperror {
	min-height: 1.5rem; /* Ensures space for error messages */
}

.forgot-password-modal .modal-content {
	background-color: #c8c9cA; /* Light gray to distinguish from login modal's white */
}
.forgot-password-modal .modal-backdrop {
	opacity: 0.7 !important; /* Darker backdrop to separate from login modal */
}

.modal-content {
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: none;
}
.modal-header, .modal-footer {
	padding: 1.5rem 2rem;
}
.modal-title {
	font-weight: 700;
	color: #333333;
}
.form-label {
	font-size: 0.9rem;
	color: #333333;
}
.form-control {
	border-radius: 5px;
	border: 1px solid #ced4da;
	padding: 0.75rem;
	font-size: 1rem;
}
.form-control:focus {
	border-color: #4A90E2;
	box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}
.btn-primary {
	background-color: #4A90E2;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-weight: 500;
}
.btn-primary:hover {
	background-color: #357ABD;
}
.btn-secondary {
	background-color: #f8f9fa;
	color: #333333;
	border: 1px solid #ced4da;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
}
.btn-secondary:hover {
	background-color: #e9ecef;
}
.text-primary {
	color: #4A90E2 !important;
}
.text-primary:hover {
	color: #357ABD !important;
}
.loginerror {
	min-height: 1.5rem; /* Ensures space for error messages */
}

