/* ===========================================
   AUTH PAGES (Login, Register, Password Reset)
   Bloomberg-grade authentication UI
   =========================================== */

.auth-page {
	min-height: 100vh;
	background: var(--bg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
}

.auth-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1200px;
	width: 100%;
	background: var(--bg-secondary);
	border: 1px solid var(--border-primary);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   LEFT SIDE: BRANDING
   =========================================== */

.auth-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 3rem;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
	border-right: 1px solid var(--border-primary);
	position: relative;
	overflow: hidden;
}

.auth-brand::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
	animation: authBrandPulse 20s ease-in-out infinite;
}

@keyframes authBrandPulse {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-10%, -10%) scale(1.1); }
}

.auth-brand-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.auth-brand-logo {
	margin-bottom: 2rem;
	animation: authLogoFloat 3s ease-in-out infinite;
}

@keyframes authLogoFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.auth-brand-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-info));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.auth-brand-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.6;
}

.auth-brand-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: left;
}

.auth-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: var(--bg-primary);
	border: 1px solid var(--border-primary);
	border-radius: 0.5rem;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.auth-feature:hover {
	border-color: var(--accent-primary);
	transform: translateX(8px);
}

.auth-feature-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--accent-primary);
	flex-shrink: 0;
}

/* ===========================================
   RIGHT SIDE: FORM
   =========================================== */

.auth-form-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 3rem;
}

.auth-form-wrapper {
	width: 100%;
	max-width: 400px;
}

.auth-form-header {
	margin-bottom: 2rem;
	text-align: center;
}

.auth-form-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.auth-form-description {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===========================================
   FORM ELEMENTS
   =========================================== */

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.auth-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.auth-form-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.auth-form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--bg-primary);
	border: 1px solid var(--border-primary);
	border-radius: 0.5rem;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.2s ease;
}

.auth-form-input:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-form-input::placeholder {
	color: var(--text-tertiary);
}

.auth-form-input:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Password Field with Toggle */
.auth-password-wrapper {
	position: relative;
}

.auth-password-wrapper .auth-form-input {
	padding-right: 3rem;
}

.auth-password-toggle {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-tertiary);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.auth-password-toggle:hover {
	color: var(--accent-primary);
}

.auth-password-icon {
	width: 1.25rem;
	height: 1.25rem;
}

/* ===========================================
   FORM FOOTER (Remember Me / Forgot Password)
   =========================================== */

.auth-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: -0.5rem;
}

.auth-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	border: 1px solid var(--border-primary);
	border-radius: 0.25rem;
	cursor: pointer;
}

.auth-checkbox-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	user-select: none;
}

.auth-link {
	font-size: 0.875rem;
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.auth-link:hover {
	color: var(--accent-hover);
	text-decoration: underline;
}

.auth-link-primary {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.auth-link-primary:hover {
	color: var(--accent-hover);
	text-decoration: underline;
}

/* ===========================================
   BUTTONS
   =========================================== */

.auth-btn {
	width: 100%;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.auth-btn-primary {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-info));
	color: #FFFFFF;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.auth-btn-primary:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.auth-btn-primary:active:not(:disabled) {
	transform: translateY(0);
}

.auth-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.auth-btn-loader {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.auth-spinner {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
}

/* ===========================================
   ALERTS
   =========================================== */

.auth-alert {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	animation: authAlertSlideIn 0.3s ease-out;
}

@keyframes authAlertSlideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.auth-alert-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.auth-alert-error {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid var(--loss);
	color: var(--loss-light);
}

.auth-alert-error .auth-alert-icon {
	color: var(--loss);
}

.auth-alert-success {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid var(--gain);
	color: var(--gain-light);
}

.auth-alert-success .auth-alert-icon {
	color: var(--gain);
}

/* ===========================================
   ALTERNATIVE ACTION
   =========================================== */

.auth-form-alt {
	margin-top: 2rem;
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-primary);
}

.auth-form-alt-text {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

/* ===========================================
   MOBILE RESPONSIVE
   =========================================== */

@media (max-width: 1024px) {
	.auth-container {
		grid-template-columns: 1fr;
	}

	.auth-brand {
		display: none;
	}

	.auth-form-container {
		padding: 3rem 2rem;
	}
}

@media (max-width: 640px) {
	.auth-page {
		padding: 1rem;
	}

	.auth-form-container {
		padding: 2rem 1.5rem;
	}

	.auth-form-wrapper {
		max-width: 100%;
	}

	.auth-form-title {
		font-size: 1.75rem;
	}

	.auth-form-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
}

/* ===========================================
   ACCESSIBILITY
   =========================================== */

@media (prefers-reduced-motion: reduce) {
	.auth-brand::before,
	.auth-brand-logo,
	.auth-feature,
	.auth-alert,
	.auth-btn {
		animation: none !important;
		transition: none !important;
	}
}

/* Focus visible for keyboard navigation */
.auth-form-input:focus-visible,
.auth-btn:focus-visible,
.auth-link:focus-visible {
	outline: 2px solid var(--accent-primary);
	outline-offset: 2px;
}

/* ===========================================
   REGISTRATION-SPECIFIC STYLES
   =========================================== */

/* Password Strength Meter */
.password-strength {
	margin-top: 0.75rem;
}

.password-strength-bar {
	height: 4px;
	background: var(--bg-tertiary);
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.password-strength-fill {
	height: 100%;
	transition: width 0.3s ease, background-color 0.3s ease;
	border-radius: 2px;
}

.password-strength-fill.strength-weak {
	background-color: var(--loss);
	box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.password-strength-fill.strength-fair {
	background-color: #f59e0b;
	box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.password-strength-fill.strength-good {
	background-color: #10b981;
	box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.password-strength-fill.strength-strong {
	background-color: var(--gain);
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.password-strength-text {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Input states for registration */
.auth-input-success {
	border-color: var(--gain);
	background-color: rgba(34, 197, 94, 0.05);
}

.auth-input-success:focus {
	border-color: var(--gain);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.auth-input-error {
	border-color: var(--loss);
	background-color: rgba(239, 68, 68, 0.05);
}

.auth-input-error:focus {
	border-color: var(--loss);
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Auth hints */
.auth-hint {
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: var(--text-tertiary);
	line-height: 1.4;
}

/* Label with required indicator */
.auth-label-required {
	color: var(--loss);
	margin-left: 0.25rem;
}

/* Checkbox group */
.auth-checkbox-group {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.auth-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	user-select: none;
}

.auth-checkbox input[type="checkbox"] {
	width: 1.25rem;
	height: 1.25rem;
	border: 2px solid var(--border-secondary);
	border-radius: 0.375rem;
	background-color: var(--bg-tertiary);
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
	margin-top: 0.125rem;
	appearance: none;
	position: relative;
}

.auth-checkbox input[type="checkbox"]:checked {
	background-color: var(--accent-primary);
	border-color: var(--accent-primary);
}

.auth-checkbox input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0.5rem;
	height: 0.75rem;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
}

.auth-checkbox input[type="checkbox"]:hover {
	border-color: var(--accent-primary);
}

.auth-checkbox input[type="checkbox"]:focus {
	outline: 2px solid var(--accent-primary);
	outline-offset: 2px;
}

.auth-checkbox input[type="checkbox"]:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.auth-checkbox-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.auth-checkbox-label a {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.auth-checkbox-label a:hover {
	color: var(--accent-hover);
	text-decoration: underline;
}

/* Informational text below checkbox */
.auth-checkbox-info {
	font-size: 0.75rem;
	color: var(--text-tertiary);
	margin-top: 0.5rem;
	margin-left: 1.75rem;
	line-height: 1.4;
}

.auth-checkbox-info a {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.auth-checkbox-info a:hover {
	color: var(--accent-hover);
	text-decoration: underline;
}

/* Auth container for new layout (2-column) */
.auth-wrapper {
	display: grid;
	grid-template-columns: 500px 1fr;
	max-width: 1400px;
	width: 100%;
	min-height: 100vh;
	background: var(--bg-primary);
}

.auth-card {
	padding: 3rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--bg-secondary);
	border-right: 1px solid var(--border-primary);
}

.auth-logo {
	margin-bottom: 2rem;
}

.auth-logo img {
	height: 48px;
	width: auto;
}

.auth-header {
	margin-bottom: 2rem;
}

.auth-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.auth-subtitle {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.auth-field {
	margin-bottom: 1.5rem;
}

.auth-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.auth-input {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--bg-tertiary);
	border: 1px solid var(--border-primary);
	border-radius: 0.5rem;
	color: var(--text-primary);
	font-size: 0.9375rem;
	transition: all 0.2s ease;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.auth-input:hover {
	border-color: var(--border-secondary);
}

.auth-input:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
	background: var(--bg-primary);
}

.auth-input:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.auth-input::placeholder {
	color: var(--text-tertiary);
}

/* Input group for password toggle */
.auth-input-group {
	position: relative;
}

.auth-input-group .auth-input {
	padding-right: 3rem;
}

.auth-input-toggle {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-tertiary);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
	border-radius: 0.375rem;
}

.auth-input-toggle:hover {
	color: var(--text-primary);
	background: var(--bg-tertiary);
}

.auth-input-toggle:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Auth error message */
.auth-error {
	margin-top: 0.5rem;
	font-size: 0.8125rem;
	color: var(--loss);
	display: flex;
	align-items: flex-start;
	gap: 0.375rem;
	line-height: 1.4;
}

.auth-error::before {
	content: '⚠';
	flex-shrink: 0;
	font-size: 0.875rem;
}

/* Auth message (global) */
.auth-message {
	padding: 0.875rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	border: 1px solid;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.auth-message-error {
	background: rgba(239, 68, 68, 0.1);
	border-color: var(--loss);
	color: var(--loss-light);
}

.auth-message-success {
	background: rgba(34, 197, 94, 0.1);
	border-color: var(--gain);
	color: var(--gain-bright);
}

/* Auth button */
.auth-button {
	width: 100%;
	padding: 0.875rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: 0.5rem;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.auth-button-primary {
	background: var(--accent-primary);
	color: white;
}

.auth-button-primary:hover:not(:disabled) {
	background: var(--accent-hover);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
	transform: translateY(-1px);
}

.auth-button-primary:active:not(:disabled) {
	transform: translateY(0);
}

.auth-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.auth-button-loading {
	position: relative;
}

.auth-button-spinner {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Auth footer */
.auth-footer {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-primary);
	text-align: center;
}

.auth-footer-text {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.auth-footer-link {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 500;
	margin-left: 0.25rem;
	transition: color 0.2s ease;
}

.auth-footer-link:hover {
	color: var(--accent-hover);
	text-decoration: underline;
}

/* Auth info sidebar */
.auth-info {
	padding: 3rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.auth-info-card {
	padding: 2rem;
	background: var(--bg-secondary);
	border: 1px solid var(--border-primary);
	border-radius: 0.75rem;
	transition: all 0.3s ease;
}

.auth-info-card:hover {
	border-color: var(--accent-primary);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.auth-info-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-info));
	border-radius: 0.75rem;
	color: white;
	margin-bottom: 1rem;
}

.auth-info-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.auth-info-text {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Responsive for new layout */
@media (max-width: 1280px) {
	.auth-wrapper {
		grid-template-columns: 450px 1fr;
	}
	
	.auth-card {
		padding: 3rem;
	}
	
	.auth-info {
		padding: 3rem;
	}
}

@media (max-width: 1024px) {
	.auth-wrapper {
		grid-template-columns: 1fr;
	}
	
	.auth-card {
		border-right: none;
		border-bottom: 1px solid var(--border-primary);
	}
	
	.auth-info {
		padding: 2rem;
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.auth-info-card {
		flex: 1 1 calc(50% - 1rem);
		min-width: 250px;
	}
}

@media (max-width: 640px) {
	.auth-card {
		padding: 2rem 1.5rem;
	}
	
	.auth-title {
		font-size: 1.5rem;
	}
	
	.auth-info {
		padding: 1.5rem;
	}
	
	.auth-info-card {
		flex: 1 1 100%;
		padding: 1.5rem;
	}
}

/* ===========================================
   EMAIL VERIFICATION PAGES
   =========================================== */

.auth-card-centered {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.auth-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	margin: 0 auto 1.5rem auto;
	border-radius: 50%;
	animation: authIconPulse 2s ease-in-out infinite;
}

.auth-icon-primary {
	background: rgba(14, 165, 233, 0.1);
	color: var(--zl-accent-primary);
	border: 2px solid rgba(14, 165, 233, 0.3);
}

.auth-icon-success {
	background: rgba(34, 197, 94, 0.1);
	color: rgb(34, 197, 94);
	border: 2px solid rgba(34, 197, 94, 0.3);
}

@keyframes authIconPulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 20px rgba(14, 165, 233, 0);
	}
}

.auth-instructions {
	margin: 2rem 0;
	padding: 1.5rem;
	background: rgba(14, 165, 233, 0.05);
	border: 1px solid rgba(14, 165, 233, 0.15);
	border-radius: 0.75rem;
	text-align: left;
}

.auth-instructions-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--zl-text-primary);
	margin: 0 0 1rem 0;
}

.auth-instructions-list {
	margin: 0;
	padding: 0 0 0 1.5rem;
	list-style-type: decimal;
	color: var(--zl-text-secondary);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.auth-instructions-list li {
	margin-bottom: 0.5rem;
}

.auth-instructions-list li:last-child {
	margin-bottom: 0;
}

.auth-resend {
	margin: 2rem 0;
}

.auth-success-message {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 2rem 0;
	padding: 1.5rem;
	background: rgba(34, 197, 94, 0.05);
	border: 1px solid rgba(34, 197, 94, 0.15);
	border-radius: 0.75rem;
	text-align: left;
}

.auth-success-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgb(34, 197, 94);
	font-size: 0.9375rem;
	font-weight: 500;
}

.auth-success-item svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.auth-redirect-message {
	margin: 1.5rem 0;
	padding: 1rem;
	background: rgba(14, 165, 233, 0.05);
	border: 1px solid rgba(14, 165, 233, 0.15);
	border-radius: 0.5rem;
	font-size: 0.875rem;
	color: var(--zl-text-secondary);
}

.auth-countdown {
	font-weight: 700;
	color: var(--zl-accent-primary);
	font-size: 1.125rem;
}

.auth-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin: 2rem 0 0 0;
}

@media (max-width: 640px) {
	.auth-actions {
		flex-direction: column;
	}
	
	.auth-actions .auth-button {
		width: 100%;
	}
}

