.auth-alert {
	margin-bottom: 1.25rem;
	border-radius: 0.75rem;
	padding: 0.875rem 1rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.auth-alert--error {
	border: 1px solid #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.auth-alert--success {
	border: 1px solid #bbf7d0;
	background: #f0fdf4;
	color: #166534;
}

.auth-alert ul {
	margin: 0;
	padding-left: 1.125rem;
}

.auth-alert li + li {
	margin-top: 0.25rem;
}

@keyframes wellness-auth-spin {
	to {
		transform: rotate(360deg);
	}
}

.auth-submit.is-loading {
	pointer-events: none;
	opacity: 0.9;
}

.auth-submit__spinner {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	margin-left: 0.125rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: wellness-auth-spin 0.65s linear infinite;
	flex-shrink: 0;
}

.auth-submit[disabled]:not(.is-loading) {
	opacity: 0.7;
	cursor: not-allowed;
}
