/* Base styles */

.overlay {
	pointer-events: none;
}

.fs-7 {
	font-size: 0.7rem !important;
}

/* Auth styles */

body.auth-page {
	background-image: url('../images/bg.jpg');
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.auth-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.auth-card {
	background: rgb(255 255 255 / 20%);
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	padding: 40px;
	max-width: 450px;
	backdrop-filter: blur(5px);
}

.auth-logo {
    height: 30px;
    margin-bottom: 10px;
}

.auth-header {
	text-align: center;
	margin-bottom: 30px;
}

.auth-header p {
	font-size: 1rem;
	margin: 0;
}

.auth-step {
	display: none;
}

.auth-step.active {
	display: block;
	animation: fadeInUp 0.5s ease-out;
	will-change: opacity, transform;
}

.btn-loading {
	display: none;
}

.auth-info {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
}

.auth-info p {
	margin: 5px 0;
	color: #495057;
	font-size: 0.9rem;
}

.auth-info strong {
	color: #2c3e50;
}

@media (max-width: 576px) {
	.auth-card {
		padding: 30px 20px;
		margin: 10px;
	}

	.auth-actions {
		flex-direction: column;
	}

	.auth-actions .btn {
		width: 100%;
	}
}

/* Animations */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.check-circle-fill .bi-check-circle-fill {
	width: 36px;
	height: 36px;
}

.page-header .bi-truck-lg {
	width: 20px;
	height: 20px;
}

/* Mobile adaptation for page header */

@media (max-width: 575.98px) {
	.page-header {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 1rem;
	}
}