.auth-page-section {
	min-height: calc(100vh - 12rem);
	padding-top: 2rem;
	padding-bottom: 3rem;
	background: #ffffff;
}

.auth-shell {
	max-width: 400px;
	margin: 0 auto;
}

.auth-card {
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 16px;
	padding: 1.35rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.auth-copy {
	margin-bottom: 0.95rem;
}

.auth-eyebrow {
	margin-bottom: 0.25rem;
	color: #23a559;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.auth-title {
	margin-bottom: 0.35rem;
	color: #1f2937;
	font-size: 1.45rem;
	line-height: 1.2;
}

.auth-subtitle {
	margin: 0;
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.5;
}

.auth-notification {
	margin-bottom: 1rem;
	border-radius: 14px;
}

.auth-switch {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.4rem;
	margin-bottom: 1rem;
	padding: 0.25rem;
	border-radius: 12px;
	background: #f4f6f8;
}

.auth-switch-button {
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: #64748b;
	font-size: 0.92rem;
	font-weight: 700;
	padding: 0.72rem 0.9rem;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.auth-switch-button.is-active {
	background: #ffffff;
	color: #1f2937;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.auth-panel {
	display: none;
}

.auth-panel.is-active {
	display: block;
}

.auth-google-slot {
	display: flex;
	justify-content: center;
	min-height: 40px;
	padding: 0.75rem 0.9rem;
	border: 1px solid #edf1f4;
	border-radius: 12px;
	background: #fafbfc;
}

.auth-google-section {
	padding-top: 0.1rem;
}

.auth-google-intro {
	margin-bottom: 0.95rem;
	padding: 0.95rem 1rem;
	border: 1px solid #e7ecf0;
	border-radius: 12px;
	background: #fafbfc;
	text-align: center;
}

.auth-google-intro-title {
	margin: 0 0 0.3rem;
	color: #1f2937;
	font-size: 0.94rem;
	font-weight: 700;
}

.auth-google-intro-copy {
	margin: 0;
	color: #64748b;
	font-size: 0.84rem;
	line-height: 1.5;
}

.auth-google-copy {
	margin: 0 0 0.5rem;
	text-align: center;
	color: #64748b;
	font-size: 0.8rem;
	font-weight: 600;
}

.auth-divider {
	position: relative;
	margin: 1.1rem 0 0.8rem;
	text-align: center;
}

.auth-divider::before {
	content: "";
	position: absolute;
	inset: 50% 0 auto;
	border-top: 1px solid #e5e7eb;
}

.auth-divider span {
	position: relative;
	display: inline-block;
	padding: 0 0.7rem;
	background: #ffffff;
	color: #94a3b8;
	font-size: 0.8rem;
	font-weight: 700;
}

.auth-form .field {
	margin-bottom: 0.8rem;
}

.auth-label {
	margin-bottom: 0.35rem;
	color: #334155;
	font-size: 0.84rem;
	font-weight: 700;
}

.auth-input {
	height: 2.75rem;
	border-radius: 12px;
	border-color: #d7dee5;
	box-shadow: none;
}

.auth-input:focus {
	border-color: #23a559;
	box-shadow: 0 0 0 0.125em rgba(35, 165, 89, 0.14);
}

.auth-submit {
	height: 2.8rem;
	margin-top: 0.35rem;
	border-radius: 12px;
	font-weight: 700;
}

.auth-resend-box {
	margin-top: 0.8rem;
	padding: 0.8rem 0.9rem;
	border: 1px solid #e7ecf0;
	border-radius: 12px;
	background: #fafbfc;
}

.auth-resend-copy {
	margin: 0 0 0.55rem;
	color: #64748b;
	font-size: 0.82rem;
	text-align: center;
}

.auth-resend-button {
	height: 2.45rem;
	border-radius: 10px;
	font-weight: 700;
}

.auth-help {
	min-height: 1.1rem;
	margin-top: 0.35rem;
}

.auth-footer-text {
	margin: 0.95rem 0 0;
	text-align: center;
	color: #64748b;
	font-size: 0.88rem;
}

.auth-text-button {
	padding: 0;
	border: 0;
	background: none;
	color: #1f2937;
	font-weight: 700;
	cursor: pointer;
}

.auth-text-button:hover {
	color: #23a559;
}

.auth-status {
	display: none;
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	font-size: 0.9rem;
	line-height: 1.5;
}

.auth-status.is-visible {
	display: block;
}

.auth-status.is-success {
	background: #edf9f0;
	color: #1a7f3e;
}

.auth-status.is-error {
	background: #fff1f2;
	color: #be123c;
}

@media (max-width: 768px) {
	.auth-page-section {
		padding-top: 1rem;
		padding-bottom: 2rem;
	}

	.auth-shell {
		max-width: 100%;
	}

	.auth-card {
		padding: 1.1rem;
		border-radius: 14px;
	}

	.auth-title {
		font-size: 1.3rem;
	}
}
