.auth-section {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(40px, 6vw, 100px) clamp(24px, 3.5vw, 80px);
	position: relative;
	z-index: 1;
}

.auth-card {
	background-color: #161C2D;
	border: 1px solid #252C40;
	border-radius: 20px;
	padding: clamp(32px, 3.5vw, 52px) clamp(28px, 3vw, 48px);
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.auth-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.auth-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.auth-brand img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	margin-top: -4px;
	margin-bottom: 7px;
}

.auth-title {
	font-size: 44px;
	font-family: 'ChooseSpaces', sans-serif;
	font-weight: normal;
	color: #fff;
	line-height: 1;
}

.auth-lines {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.auth-line {
	height: 3px;
	border-radius: 2px;
}

.auth-heading {
	font-size: 13px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	color: #8491AF;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-top: -4px;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.form-input {
	background-color: #1A2030;
	border: 1px solid #252C40;
	border-radius: 10px;
	padding: 14px 18px;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s, background-color 0.2s;
	width: 100%;
}

.form-input::placeholder {
	color: #8491AF;
}

.form-input:focus {
	border-color: #5380FF;
	background-color: #1D2540;
}

.auth-btn {
	width: 100%;
	margin-top: 4px;
	padding: 14px;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.08em;
	border-radius: 10px;
}

.auth-switch {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #8491AF;
	text-align: center;
}

.auth-switch a {
	color: #5380FF;
	text-decoration: none;
}

.auth-switch a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.auth-section {
		align-items: flex-start;
		padding-top: 48px;
	}
}

@media (max-width: 480px) {
	.auth-section {
		padding: 32px 16px;
		align-items: center;
	}

	.auth-card {
		padding: 28px 22px;
		gap: 20px;
	}

	.auth-title {
		font-size: 38px;
	}
}