html, body {
	font-family: 'Inter', sans-serif;
	height: 100vh;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.login-container {
	width: 100%;
	max-width: 500px;
	padding: 2rem;
}

.login-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.login-header {
	background: #ff3d03;
	color: #fff;
	padding: 2rem;
	text-align: center;
}

.login-header h1 {
	font-size: 1.8rem;
	margin: 0;
	font-weight: 700;
}

.login-header a {
	color: #fff;
	text-decoration: none;
}

.login-body {
	padding: 2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.input-group {
	display: flex;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.input-group:focus-within {
	border-color: #ff3d03;
	box-shadow: 0 0 0 3px rgba(255, 61, 3, 0.1);
}

.form-control {
	flex: 1;
	border: none !important;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	outline: none;
	background: transparent;
}

.form-control::placeholder {
	color: #9ca3af;
}

.input-group-text {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
	background: #f9fafb;
	color: #6b7280;
	border: none;
}

.invalid-feedback {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: block;
}

.is-invalid {
	border-color: #dc2626 !important;
}

.icheck-primary label {
	margin: 0;
	font-size: 0.95rem;
	color: #333;
}

.checkbox-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.btn {
	width: 100%;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.btn-primary:hover {
	background: #ff6b4a;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(255, 61, 3, 0.3);
}

.text-center {
	text-align: center;
	margin-top: 1rem;
}

.text-center a {
	color: #ff3d03;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.text-center a:hover {
	color: #ff6b4a;
	text-decoration: underline;
}

.login-container-xl {
	width: 100%;
	max-width: 100vh;
	padding: 2rem;
}

@media (max-width: 640px) {
	.login-container {
		padding: 1rem;
	}

	.login-container-xl {
		padding: 1rem;
	}

	.login-body {
		padding: 1.5rem;
	}

	.login-header {
		padding: 1.5rem;
	}
}

.links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.link-card {
	background: #fff;
	border: 2px solid #ff3d03;
	border-radius: 12px;
	padding: 1rem;
	text-decoration: none;
	color: #ff3d03;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-card:hover {
	background: #ff3d03;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.top-button {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: #ff3d03;
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.top-button:hover {
	background: #ff6b4a;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.link-card-callout {
	background: #fff;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	padding: 1.5rem;
	color: #000000;
	transition: all 0.3s ease;
	align-content: center;
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}