.saasbuilder-auth-container {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	background: transparent;
	border: none;
	padding: 32px;
	box-sizing: border-box;
}

.saasbuilder-dark-mode .saasbuilder-auth-container {
	background: transparent;
	border: none;
}

.saasbuilder-auth-header {
	text-align: center;
	margin-bottom: 24px;
}

.saasbuilder-auth-title {
	font-size: 24px;
	font-weight: 600; /* Plus sobre */
	letter-spacing: -0.03em;
	color: var(--color-text);
	margin: 0 0 8px 0;
}

.saasbuilder-auth-subtitle {
	font-size: 14px;
	color: var(--color-text-muted);
	margin: 0;
}

/* .saasbuilder-auth-link : défini dans header.css (élément transverse du header). */

.saasbuilder-auth-submit {
	width: 100%;
	height: 48px;
	font-size: 15px;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.saasbuilder-auth-footer {
	text-align: center;
	margin-top: 24px;
	font-size: 13px;
	color: var(--saasbuilder-text-muted, #64748b);
}

.saasbuilder-auth-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 20px 0;
	color: var(--color-text-muted);
	font-size: 12px;
}

.saasbuilder-auth-divider::before,
.saasbuilder-auth-divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid var(--color-border, rgba(148, 163, 184, 0.3));
}

.saasbuilder-auth-divider span {
	padding: 0 12px;
}

.saasbuilder-auth-google-btn {
	width: 100%;
	height: 48px;
	font-size: 14px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
}

.saasbuilder-spinner {
	width: 20px;
	height: 20px;
	animation: saasbuilder-spin 1s linear infinite;
	stroke-dasharray: 60;
	stroke-dashoffset: 40;
}

@keyframes saasbuilder-spin {
	100% { transform: rotate(360deg); }
}
