+ {/* Bottom */}
+
diff --git a/frontend/editor/src/saas/routes/authShared/saas-auth.css b/frontend/editor/src/saas/routes/authShared/saas-auth.css
index 5073a24c9..9a8943fc2 100644
--- a/frontend/editor/src/saas/routes/authShared/saas-auth.css
+++ b/frontend/editor/src/saas/routes/authShared/saas-auth.css
@@ -14,7 +14,7 @@
justify-content: center;
padding: 0.75rem 1rem;
border: 1px solid #d1d5db;
- border-radius: 0.625rem;
+ border-radius: 100px;
background-color: #ffffff;
font-size: 1rem;
font-weight: 600;
@@ -22,6 +22,10 @@
cursor: pointer;
gap: 0.5rem;
box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.04);
+ transition:
+ background-color 150ms ease,
+ box-shadow 150ms ease,
+ border-color 150ms ease;
}
.oauth-button-fullwidth:disabled {
@@ -29,6 +33,11 @@
opacity: 0.6;
}
+.oauth-button-fullwidth:hover:not(:disabled) {
+ background-color: #fafafa;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
+}
+
.auth-dropdown-wrapper {
position: relative;
}
@@ -72,3 +81,90 @@
color: #9c2f30;
border: 2px solid currentColor;
}
+
+/* ── Logo block ─────────────────────────────────────────────────────── */
+.auth-logo-block {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ margin-bottom: 2rem;
+ margin-top: 0.5rem;
+ animation: authFadeUp 0.4s ease both;
+}
+
+.auth-logo-header {
+ height: 8rem;
+ width: auto;
+}
+
+.auth-logo-header--dark {
+ display: none;
+}
+
+/* ── Page entrance animation ────────────────────────────────────────── */
+@keyframes authFadeUp {
+ from {
+ opacity: 0;
+ transform: translateY(12px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+/* ── Expandable trigger button state ────────────────────────────────── */
+.auth-expandable-trigger {
+ transition:
+ background-color 180ms ease,
+ box-shadow 180ms ease,
+ border-color 180ms ease;
+}
+
+.auth-expandable-trigger--active {
+ border-color: #af3434 !important;
+ box-shadow: 0 0 0 3px rgba(175, 52, 52, 0.12);
+}
+
+/* ── Animated expand/collapse via grid-template-rows ───────────────── */
+.auth-expand-grid {
+ display: grid;
+ grid-template-rows: 0fr;
+ transition:
+ grid-template-rows 280ms cubic-bezier(0.4, 0, 0.2, 1),
+ opacity 220ms ease;
+ opacity: 0;
+}
+
+.auth-expand-grid--open {
+ grid-template-rows: 1fr;
+ opacity: 1;
+}
+
+.auth-expand-inner {
+ overflow: hidden;
+ min-height: 0;
+}
+
+/* ── Icon+label group — keeps icons vertically aligned across buttons ── */
+.oauth-btn-group {
+ display: inline-flex;
+ align-items: center;
+ min-width: 12.5rem;
+}
+
+.oauth-btn-label {
+ flex: 1;
+ text-align: center;
+}
+
+/* ── Icon helpers inside oauth-button-fullwidth ─────────────────────── */
+.auth-at-icon {
+ font-size: 1.25rem;
+ line-height: 1;
+ margin-right: 0.5rem;
+ display: inline-block;
+ width: 1.75rem;
+ text-align: center;
+ flex-shrink: 0;
+}
diff --git a/frontend/editor/src/saas/routes/login/OAuthButtons.tsx b/frontend/editor/src/saas/routes/login/OAuthButtons.tsx
index e016c125e..717f96b9a 100644
--- a/frontend/editor/src/saas/routes/login/OAuthButtons.tsx
+++ b/frontend/editor/src/saas/routes/login/OAuthButtons.tsx
@@ -17,6 +17,7 @@ interface OAuthButtonsProps {
isSubmitting: boolean;
layout?: "vertical" | "grid" | "icons" | "fullwidth";
enabledProviders?: string[]; // List of enabled provider IDs from backend
+ labelPrefix?: string;
}
export default function OAuthButtons({
@@ -24,6 +25,7 @@ export default function OAuthButtons({
isSubmitting,
layout = "vertical",
enabledProviders: _enabledProviders = [],
+ labelPrefix = "",
}: OAuthButtonsProps) {
const { t } = useTranslation();
@@ -92,12 +94,18 @@ export default function OAuthButtons({
className="oauth-button-fullwidth"
title={p.label}
>
-
})
- {p.label}
+
+
+
+ {labelPrefix}
+ {p.label}
+
+
))}
diff --git a/frontend/editor/src/saas/styles/saas-theme.css b/frontend/editor/src/saas/styles/saas-theme.css
index 9d670c98d..2aad69c54 100644
--- a/frontend/editor/src/saas/styles/saas-theme.css
+++ b/frontend/editor/src/saas/styles/saas-theme.css
@@ -35,7 +35,7 @@
--auth-label-text: #2b3230;
--auth-button-bg: #af3434;
--auth-button-text: #ffffff;
- --auth-magic-button-bg: #8b5cf6;
+ --auth-magic-button-bg: #af3434;
--auth-magic-button-text: #ffffff;
/* Light-only auth colors (no dark mode equivalents) used for login/signup */
@@ -45,7 +45,7 @@
--auth-label-text-light-only: #2b3230;
--auth-button-bg-light-only: #af3434;
--auth-button-text-light-only: #ffffff;
- --auth-magic-button-bg-light-only: #8b5cf6;
+ --auth-magic-button-bg-light-only: #af3434;
--auth-magic-button-text-light-only: #ffffff;
--auth-bg-color-light-only: #ffffff;
--auth-card-bg-light-only: #ffffff;