html,
body.auth-page {
	margin: 0;
	min-height: 100%;
}

.auth-page {
	min-height: 100vh;
	overflow-x: hidden;
}

.auth-background {
	position: fixed;
	inset: 0;
	background-image: url('../img/ski-resort.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

.auth-background::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(11, 16, 74, 0.35);
}

.auth-main {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.5rem;
}

.auth-card {
	width: 100%;
	max-width: 28rem;
	border: 0;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(6px);
}

.auth-card .card-title {
	font-weight: 700;
	color: #0b104a;
}

.auth-divider {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #6c757d;
	font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: #dee2e6;
}

.auth-google-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	font-weight: 600;
}

.auth-google-btn__icon {
	flex: 0 0 auto;
}
