
.hero{
	height: 800px;
}
.hero__inner{
	max-width: 1435px;
	margin: 0 auto;
	width: 100%;
}

.auth {
	padding-bottom: 80px;
	margin-top: -480px;
	position: relative;
}

.auth__inner {
	max-width: var(--maze-max);
	margin: 0 auto;
	padding: 0 var(--maze-pad);
}

.auth__box {
	max-width: 553px;
	margin: 0 auto;
}

.auth__heading {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.35;
	color: #fff;
	margin: 0 0 24px;
}

.auth__notice {
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 16px;
	padding: 10px 12px;
	border-radius: 6px;
}

.auth__notice--error {
	background: rgba(220, 53, 69, 0.15);
	color: #f87171;
	border: 1px solid rgba(248, 113, 113, 0.3);
}

.auth__notice--success {
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
	border: 1px solid rgba(74, 222, 128, 0.3);
}

.auth__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 553px;
	margin: 0 auto;
	margin-top: 32px;
}

.auth__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.auth__label {
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, 1);
}

.auth__required {
	color: rgba(199, 0, 54, 1);
	margin-left: 2px;
	font-size: 14px;
	font-weight: 500;
}

.auth__input {
	max-height: 48px;
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(249, 250, 251, 0.5);
	background: transparent;
	padding: 13px 13px 12px;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: rgba(212, 212, 216, 1);
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.auth__input::placeholder {
	color: rgba(255, 255, 255, 0.5);
	font-size: 16px;
}

.auth__input:focus {
	border-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.auth__input.auth__input--error {
	border-color: rgba(248, 113, 113, 0.8);
}

.auth__submit {
	display: flex;
	justify-content: center;
	margin: 0;
	margin-top: 16px;
	padding: 0;
}

.auth__btn {
	height: 48px;
	padding: 12px 24px;
	border-radius: 12px;
	border: unset;
	background: rgba(249, 250, 251, 1);
	color: #4A5565;
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
}

.auth__btn:hover:not(:disabled) {
	background: #f3f4f6;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.auth__btn:active:not(:disabled) {
	transform: translateY(1px);
}

.auth__btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.auth__error {
	font-size: 12px;
	color: #f87171;
	min-height: 16px;
}

.auth__error.is-visible {
	display: block;
}

.auth__link {
	text-align: center;
	margin: 20px 0 0;
	font-size: 14px;
	color: var(--maze-muted);
}

.auth__link a {
	color: var(--maze-accent);
	text-decoration: none;
}

.auth__link a:hover {
	text-decoration: underline;
}
