:root {
	--bg-dark: #0f1113;
	--card-bg: #1a1d20;
	--input-bg: #2b3035;
	--input-border: #454d55;
	--primary-blue: #0d6efd;
	--text-muted: #adb5bd;
}

body.auth-body {
	background-color: var(--bg-dark);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-container {
	width: 100%;
	padding: 15px;
}

.auth-card {
	max-width: 420px;
	margin: auto;
	background-color: var(--card-bg);
	border: none;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	padding: 2.5rem;
}

.auth-logo {
	font-size: 2rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
}

.auth-subtitle {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 2rem;
}

.form-label-custom {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
	display: block;
}

.form-input-custom {
	background-color: var(--input-bg);
	border: 1px solid var(--input-border);
	color: white;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	width: 100%;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

.form-input-custom:focus {
	background-color: #32383e;
	border-color: var(--primary-blue);
	color: white;
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.btn-auth-submit {
	background-color: var(--primary-blue);
	color: white;
	border: none;
	border-radius: 0.5rem;
	padding: 0.8rem;
	font-weight: 600;
	width: 100%;
	margin-top: 1.5rem;
	cursor: pointer;
	transition: filter 0.2s;
}

.btn-auth-submit:hover {
	filter: brightness(1.1);
}

.auth-footer {
	text-align: center;
	margin-top: 1.5rem;
}

.auth-link {
	color: var(--primary-blue);
	text-decoration: none;
	font-size: 0.85rem;
}

.auth-link:hover {
	text-decoration: underline;
}

.hidden {
	display: none;
}

@media (max-width: 576px) {
	.auth-card {
		padding: 1.75rem;
		margin: 1rem;
	}
	.auth-logo {
		font-size: 1.75rem;
	}
	.auth-subtitle {
		font-size: 0.95rem;
	}
	.btn-auth-submit {
		padding: 0.95rem;
	}
}

