:root {
	color-scheme: only light;
	
    --orange: #F97316;
    --navy: #0F172A;
    --light: #E5E7EB;
    --secondary: #3B82F6;
    --accent: #14B8A6;
    --soft-black: #1A1E23;
    --white: #ffffff;
    --bg: #f8fafc;
    --border: rgba(15, 23, 42, 0.08);
    --text: #0f172a;
    --muted: #64748b;
    --danger: #dc2626;
    --success: #059669;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(20,184,166,0.10), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: var(--text);
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-shell {
    flex: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}
.auth-left {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start;
    padding-top: 56px;
    padding-bottom: 40px;
    color: var(--white);

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(8,17,31,0.28),
            rgba(11,18,32,0.38)
        ),
        radial-gradient(circle at 14% 12%, rgba(249,115,22,0.16), transparent 24%),
        radial-gradient(circle at 86% 14%, rgba(34,211,238,0.14), transparent 22%),
        url('/img/auth/auth-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auth-left::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,17,31,0.08) 0%,
            rgba(15,23,42,0.14) 100%
        );

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    z-index: 0;
}

.auth-left::after {
    content: "";
    position: absolute;
    inset: -80px;

    background:
linear-gradient(
135deg,
#fb923c 0%,
#f58a1f 55%,
#ea580c 100%
);

    filter: blur(75px);

    opacity: 0.95;

    z-index: 1;
    pointer-events: none;
}

.auth-left-content,
.brand,
.auth-stats,
.auth-footer-desktop {
    position: relative;
    z-index: 2;
}

@keyframes authAmbientMove {
    0% {
        transform: translate3d(0,0,0) scale(1);
    }

    100% {
        transform: translate3d(20px,-10px,0) scale(1.03);
    }
}


.brand {
    position: relative;
    z-index: 2;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.brand h1 {
    margin: 28px 0 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
}

.brand p {
    max-width: 560px;
    color: rgba(255,255,255,0.76);
    font-size: 18px;
    line-height: 1.6;
}

.brand-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.mobile-logo {
    display: none;
    text-align: center;
    margin-top: 40px;
}

.mobile-logo img {
    height: 30px;
}

@media (max-width: 980px) {

    .auth-left {
        display: none;
    }

    .mobile-logo {
        display: block;
    }
}

@media (max-width: 768px) {

    .auth-right {
        padding-top: 0;
    }

    .auth-card {
        margin-top: 0;
    }
}

.auth-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.stat-card {
    min-width: 150px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
}

.stat-card strong {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: var(--shadow);
    border-radius: 30px;
    padding: 34px;
}

.auth-card h2 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
}

.auth-card .subtitle {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 16px;
    outline: none;
    transition: 0.2s ease;
}

.form-input:focus {
    border-color: rgba(59,130,246,0.45);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

.input-hint {
    font-size: 13px;
    margin-top: 6px;
    color: #64748b;
}

.input-hint.ok {
    color: #059669;
}

.input-hint.error {
    color: #dc2626;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row > * {
    flex: 1;
}

.password-rules {
    margin-top: 12px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.password-rules div {
    color: #64748b;
    position: relative;
    padding-left: 22px;
    line-height: 1.5;
}

.password-rules .fail {
    color: #dc2626;
}

.password-rules .fail::before {
    content: "✖";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.password-rules .ok {
    color: #059669;
}

.password-rules .ok::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

button:not(:disabled):hover {
    transform: translateY(-1px);
}

.verify-page button[type="submit"] {
    display: none;
}

.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
}

.code-inputs input {
    flex: 1;
    min-width: 0;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: rgba(255,255,255,0.92);
    outline: none;
    transition: all 0.2s ease;
}

/* Fokus (orange – deine Brandfarbe 👍) */
.code-inputs input:focus {
    border-color: rgba(249,115,22,0.7);
    box-shadow: 0 0 0 4px rgba(249,115,22,0.12);
}

/* ausgefüllt */
.code-inputs input.filled {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.08);
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.15);
}

/* komplett fertig */
.code-inputs input.complete {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.12);
}

/* Animation */
.code-inputs input.pulse {
    animation: pulseAnim 0.25s ease;
}

@keyframes pulseAnim {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .code-inputs {
        gap: 8px;
    }

    .code-inputs input {
        width: 44px;
        height: 56px;
        font-size: 22px;
    }
}

.checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin: 8px 0 22px;
    flex-wrap: wrap;
}

.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}

.checkbox-inline input {
    width: 18px;
    height: 18px;
}

.btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #fb923c);
    color: var(--white);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.auth-links {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

.auth-links a,
.inline-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-error {
    background: rgba(220,38,38,0.08);
    color: var(--danger);
    border: 1px solid rgba(220,38,38,0.12);
}

.alert-success {
    background: rgba(5,150,105,0.08);
    color: var(--success);
    border: 1px solid rgba(5,150,105,0.12);
}

.top-link{
    display:block;
    color:var(--muted);
    margin-bottom: 20px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}
.top-link span {
    color: var(--secondary);
}

.password-hint {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
}

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

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 18px;
    }

    .auth-card {
        padding: 26px 20px;
        border-radius: 24px;
    }

    .auth-card h2 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {

    .auth-right {
        align-items: flex-start;   /* statt center */
        padding-top: 0;
    }

    .auth-card {
        margin-top: 10px;
    }
}

.checkbox-group {
    margin-top: 6px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.checkbox-label a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* =========================
   AUTH LEFT – LAYOUT FIX
========================= */

.auth-left {
    justify-content: center !important;
    align-items: center;
}

/* neuer Wrapper optional (falls vorhanden) */
.auth-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
}

/* =========================
   BRAND BLOCK
========================= */

.brand {
    max-width: 620px;
}

.brand h1 {
    margin-bottom: 14px;
}

.brand p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.78);
}

/* =========================
   STAT CARDS – NEUES LAYOUT
========================= */

.auth-stats {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
    max-width: 460px;
}

/* einzelne Card */
.stat-card {
    width: 100%;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-left: 4px solid var(--orange);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* leichter Hover-Effekt */
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

/* Überschrift */
.stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.3;
    color: var(--orange);
    font-weight: 800;
}

/* Text */
.stat-card span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}

/* =========================
   MOBILE FIX (optional)
========================= */

@media (max-width: 980px) {
    .auth-stats {
        max-width: 100%;
    }
}

/* =========================================
   AUTH GLOBAL ALIGNMENT (LOGIN + REGISTER)
========================================= */

/* gesamtes Layout nicht mehr zentrieren */
.auth-left {
    justify-content: flex-start !important;
    align-items: flex-start;
    padding-top: 56px;
    padding-bottom: 40px;
}

/* Content Block links */
.auth-left-content {
    margin-top: 0;
}

/* rechter Bereich (Form) */
.auth-right {
    align-items: flex-start;
    padding-top: 48px;
    padding-bottom: 32px;
}

/* Form Card */
.auth-card {
    margin-top: 0;
}

/* Stats leicht nach unten vom Text lösen */
.auth-stats {
    margin-top: 28px;
}

/* Mobile leicht kompakter */
@media (max-width: 980px) {
    .auth-right {
        padding-top: 20px;
    }
}

.start-benefits {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.start-benefit {
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.start-benefit strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    color: #0f172a;
    margin-bottom: 4px;
}

.start-benefit span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

.form-input.is-error {
    border-color: rgba(220,38,38,0.55);
    background: rgba(220,38,38,0.03);
}

.form-input.is-error:focus {
    border-color: rgba(220,38,38,0.65);
    box-shadow: 0 0 0 4px rgba(220,38,38,0.12);
}

.form-input.is-valid {
    border-color: rgba(5,150,105,0.55);
    background: rgba(5,150,105,0.04);
}

.form-input.is-valid:focus {
    border-color: rgba(5,150,105,0.65);
    box-shadow: 0 0 0 4px rgba(5,150,105,0.12);
}

.auth-footer-desktop {
    position: absolute;
    left: 32px;
    bottom: 24px;
    z-index: 3;
}

.auth-footer-mobile {
    display: none;
}

.footer-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* DESKTOP (links unten im Bild) */
.auth-footer-desktop .footer-right a {
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.auth-footer-desktop .footer-right a:hover {
    color: #ffffff;
    opacity: 1;
}
@media (max-width: 980px) {
    .auth-footer-desktop {
        display: none;
    }

    .auth-footer-mobile {
        display: block;
        padding: 10px 18px 28px;
        text-align: center;
        font-size: 13px; /* 👈 globale Schrift kleiner */
    }

    .auth-footer-mobile .footer-right {
        justify-content: center;
        gap: 12px 18px;
    }

    .auth-footer-mobile .footer-right a {
        color: #64748b;
        font-size: 13px; /* optional nochmal explizit */
    }

    .auth-footer-mobile .footer-right a:hover {
        color: #0f172a;
    }
}

.register-info{
    display:flex;
    align-items:flex-start;
    gap:10px;

    padding:10px 12px;
    margin-bottom:18px;

    border-radius:10px;

    background:rgba(249,115,22,.06);
    border:1px solid rgba(249,115,22,.12);

    color:#6b7280;
    font-size:13px;
    line-height:1.45;

    box-shadow:none;
}
.register-info-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #f97316; /* Brandfarbe */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.register-info-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}


.auth-separator{
    display:flex;
    align-items:center;
    gap:12px;
    margin:0 0 22px;
    color:#94a3b8;
    font-size:13px;
    font-weight:700;
}

.auth-separator::before,
.auth-separator::after{
    content:"";
    flex:1;
    height:1px;
    background:#e5e7eb;
}

.gsi-material-button{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:44px;
    margin:22px 0 18px;
    padding:0 16px;

    background:#fff;
    border:1px solid #dadce0;
    border-radius:22px;

    color:#1f1f1f;
    cursor:pointer;
    font-family:Roboto, Arial, sans-serif;
    font-size:14px;
    font-weight:500;
    letter-spacing:.25px;
    text-decoration:none;

    position:relative;
    overflow:hidden;
    transition:background-color .218s, box-shadow .218s;
}

.gsi-material-button:hover{
    background:#f8fafd;
    box-shadow:0 1px 2px rgba(60,64,67,.30), 0 1px 3px rgba(60,64,67,.15);
    text-decoration:none;
}

.gsi-material-button-content-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    gap:12px;
}

.gsi-material-button-icon{
    width:20px;
    height:20px;
    flex:0 0 20px;
}

.gsi-material-button-icon svg{
    display:block;
    width:20px;
    height:20px;
}

.gsi-material-button-contents{
    flex:0 1 auto;
    color:#1f1f1f;
    line-height:1;
    text-decoration:none;
}

.gsi-material-button-state{
    position:absolute;
    inset:0;
    opacity:0;
    pointer-events:none;
}

.gsi-material-button:hover .gsi-material-button-state{
    background:#001d35;
    opacity:.08;
}

.google-legal-note{
    margin-top:10px;
    margin-bottom:18px;
    text-align:center;
    font-size:12px;
    line-height:1.45;
    color:#94a3b8;
}

.google-legal-note a{
    color:#64748b;
    text-decoration:none;
    font-weight:500;
}

.google-legal-note a:hover{
    text-decoration:underline;
}

.google-register-link{
    font-weight:600;
    color:#2563eb;
    text-decoration:none;
    transition:all .15s ease;
}

.google-register-link:hover{
    color:#1d4ed8;
    text-decoration:underline;
}

.passkey-material-button{
    margin:0 0 18px !important;
}

.passkey-material-button-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:20px;
    height:20px;
    flex:0 0 20px;
    font-size:18px;
    line-height:1;
}

.security-layout{
    display:grid;
    grid-template-columns:minmax(280px, .85fr) minmax(0, 1.65fr);
    gap:18px;
    align-items:start;
}

.security-main-card{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.security-block{
    padding:18px;
    border:1px solid #e2e8f0;
    border-radius:18px;
    background:#f8fafc;
}

.security-block + .security-block{
    margin-top:0;
}

.security-block-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
    margin-bottom:16px;
}

.security-block-head h3{
    margin:0 0 6px 0;
    font-size:18px;
    color:#0f172a;
}

.security-block-head p{
    margin:0;
    color:#475569;
    line-height:1.6;
}

.security-empty{
    padding:14px 16px;
    border-radius:14px;
    border:1px dashed #cbd5e1;
    background:#ffffff;
    color:#64748b;
    font-size:14px;
}

.security-meta{
    margin-bottom:16px;
}

.security-form{
    margin-top:16px;
}

.security-help-text{
    margin:0 0 14px 0;
    color:#475569;
    line-height:1.6;
}

.passkey-device-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.passkey-device-row{
    margin-bottom:0;
    background:#ffffff;
}

@media (max-width: 980px){
    .security-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .security-block{
        padding:16px;
    }

    .security-block-head{
        flex-direction:column;
        gap:10px;
    }

    .security-block-head .badge{
        align-self:flex-start;
    }
}

.input-hint,
.password-rules {
    display: none;
}

.field-note{
    margin: -4px 0 8px;
    font-size:13px;
    line-height:1.4;
    color:#94a3b8;
    font-weight:400;
}

.password-login-details {
    margin-top: 18px;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.password-login-details summary {
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    color: #64748b;
    text-align: center;
    font-weight: 600;
}

.password-login-details summary::-webkit-details-marker {
    display: none;
}

.password-login-details summary::after {
    content: " ↓";
    font-weight: 400;
}

.password-login-details[open] summary {
    margin-bottom: 16px;
    color: #0f172a;
}

.password-login-details[open] summary::after {
    content: " ↑";
}

@media (max-width: 768px) {
    .auth-links{
        text-align:center;
        line-height:1.5;
    }

    .auth-links a{
        display:block;
        margin-top:4px;
    }
}

@media (max-width: 980px) {

    html,
    body,
    .auth-shell,
    .auth-right {
        background: #ffffff !important;
    }

    .mobile-logo {
        display: block !important;
        text-align: center !important;
        margin: 30px 0 18px !important;
    }

    .mobile-logo img {
        height: 30px !important;
        content: url('/img/followupp-logo-on-light.png');
    }

    .auth-right {
        align-items: flex-start !important;
    }

    .auth-card {
        background: #ffffff !important;
        border: 1px solid rgba(15,23,42,.08) !important;
        box-shadow: 0 12px 30px rgba(15,23,42,.08) !important;
    }

    .auth-footer-mobile .footer-right a {
        color: #64748b !important;
    }
}

@media (max-width:980px){

    .mobile-logo{
        margin-top: 30px !important;
        margin-bottom: 00px !important;
    }

}

/* =========================================
   FOLLOWUPP AUTH DESKTOP – HERO LOOK FIX
   Neuer Orange-Hero + Light Logo + Cards
========================================= */

@media (min-width: 981px) {

    html,
    body {
        background: #f8fafc !important;
    }

    .auth-shell {
        min-height: 100vh;
        grid-template-columns: 1.05fr .95fr;
        background: #f8fafc !important;
    }

    .auth-left {
        position: relative !important;
        overflow: hidden !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;

        padding: 64px 56px 48px !important;

        color: #ffffff !important;

        background:
            radial-gradient(circle at 18% 16%, rgba(255,255,255,.16), transparent 28%),
            radial-gradient(circle at 88% 84%, rgba(255,255,255,.10), transparent 32%),
            linear-gradient(
                135deg,
                #fb923c 0%,
                #f58a1f 55%,
                #ea580c 100%
            ) !important;
    }

    .auth-left::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.08) 0%,
                rgba(255,255,255,0) 42%,
                rgba(15,23,42,.08) 100%
            ) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none !important;
    }

    .auth-left::after {
        content: "" !important;
        position: absolute !important;
        width: 520px !important;
        height: 520px !important;
        right: -210px !important;
        bottom: -220px !important;
        inset: auto !important;

        z-index: 1 !important;
        pointer-events: none !important;

        background: rgba(255,255,255,.13) !important;
        border-radius: 999px !important;
        filter: blur(8px) !important;
        opacity: 1 !important;
    }

    .auth-left-content,
    .brand,
    .auth-stats,
    .auth-footer-desktop {
        position: relative !important;
        z-index: 2 !important;
    }

    .auth-left-content {
        width: 100% !important;
        max-width: 660px !important;
        margin-top: 0 !important;
    }

    .brand {
        max-width: 660px !important;
    }

    .brand-logo img {
        content: url('/img/followupp-logo-complete-light.png') !important;
        height: 56px !important;
        width: auto !important;
        display: block !important;
        margin: 0 0 38px !important;
    }

    .brand-badge {
        background: rgba(255,255,255,.16) !important;
        border: 1px solid rgba(255,255,255,.22) !important;
        color: rgba(255,255,255,.96) !important;
        box-shadow: 0 10px 30px rgba(15,23,42,.10) !important;
    }

    .brand h1 {
        margin: 30px 0 16px !important;
        max-width: 620px !important;

        color: #ffffff !important;
        font-size: clamp(42px, 4.2vw, 68px) !important;
        line-height: .98 !important;
        letter-spacing: -0.055em !important;
        font-weight: 850 !important;
    }

    .brand p {
        max-width: 560px !important;
        margin: 0 !important;

        color: rgba(255,255,255,.86) !important;
        font-size: 18px !important;
        line-height: 1.65 !important;
        font-weight: 500 !important;
    }

    .auth-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;

        width: 100% !important;
        max-width: 500px !important;
        margin-top: 34px !important;
    }

    .stat-card {
        width: 100% !important;
        min-width: 0 !important;

        padding: 18px 20px !important;
        border-radius: 20px !important;

        background: rgba(255,255,255,.14) !important;
        border: 1px solid rgba(255,255,255,.20) !important;
        border-left: 4px solid rgba(255,255,255,.92) !important;

        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;

        box-shadow:
            0 16px 44px rgba(15,23,42,.13),
            inset 0 1px 0 rgba(255,255,255,.18) !important;

        transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
    }

    .stat-card:hover {
        transform: translateY(-2px) !important;
        background: rgba(255,255,255,.18) !important;
        box-shadow:
            0 22px 54px rgba(15,23,42,.16),
            inset 0 1px 0 rgba(255,255,255,.22) !important;
    }

    .stat-card strong {
        display: block !important;
        margin: 0 0 6px !important;

        color: #ffffff !important;
        font-size: 18px !important;
        line-height: 1.25 !important;
        font-weight: 850 !important;
        letter-spacing: -0.02em !important;
    }

    .stat-card span {
        display: block !important;
        color: rgba(255,255,255,.82) !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        font-weight: 500 !important;
    }

    .auth-right {
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 64px 40px 48px !important;

        background:
            radial-gradient(circle at 80% 8%, rgba(251,146,60,.10), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    }

    .auth-card {
        max-width: 520px !important;
        margin-top: 0 !important;

        border-radius: 32px !important;
        background: rgba(255,255,255,.94) !important;
        border: 1px solid rgba(15,23,42,.08) !important;

        box-shadow:
            0 24px 70px rgba(15,23,42,.13),
            0 1px 0 rgba(255,255,255,.8) inset !important;

        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
    }

    .auth-card h2 {
        color: #0f172a !important;
        letter-spacing: -0.04em !important;
        font-weight: 850 !important;
    }

    .auth-card .subtitle {
        color: #64748b !important;
    }

    .form-input:focus,
    .code-inputs input:focus {
        border-color: rgba(249,115,22,.62) !important;
        box-shadow: 0 0 0 4px rgba(249,115,22,.13) !important;
    }

    .btn-primary {
        background: #F97316;
        color: #ffffff !important;
        box-shadow: 0 14px 34px rgba(249,115,22,.28) !important;
    }

    .btn-primary:hover {
        box-shadow: 0 18px 42px rgba(249,115,22,.34) !important;
    }

    .auth-footer-desktop {
        left: 56px !important;
        bottom: 34px !important;
    }

    .auth-footer-desktop .footer-right a {
        color: rgba(255,255,255,.84) !important;
        font-weight: 600 !important;
    }

    .auth-footer-desktop .footer-right a:hover {
        color: #ffffff !important;
    }
}

/* Logo */
.brand-logo img {
    content: url('/img/followupp-logo-complete-light.png') !important;
    height: 56px !important;
    margin: 0 0 38px !important;
}

/* Headline */
.brand h1 {
    color: #fff !important;

    font-size: clamp(42px, 4.2vw, 64px) !important;
    line-height: 1.02 !important;

    font-weight: 700 !important;
    letter-spacing: normal !important;

    margin: 30px 0 16px !important;
    max-width: 620px !important;
}

/* Text */
.brand p {
    color: rgba(255,255,255,.88) !important;

    font-size: 18px !important;
    line-height: 1.65 !important;

    font-weight: 500 !important;
}

/* Stat Cards */
.stat-card {
    background: rgba(255,255,255,.14) !important;

    border: 1px solid rgba(255,255,255,.18) !important;
    border-left: 4px solid rgba(255,255,255,.85) !important;

    border-radius: 20px !important;

    backdrop-filter: blur(18px) !important;

    box-shadow:
        0 12px 36px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.15) !important;
}

.stat-card strong {
    color: #fff !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    letter-spacing: normal !important;
}

.stat-card span {
    color: rgba(255,255,255,.82) !important;

    font-size: 14px !important;
    line-height: 1.55 !important;
}

/* Form Card */
.auth-card {
    border-radius: 32px !important;

    background: rgba(255,255,255,.95) !important;

    border: 1px solid rgba(15,23,42,.06) !important;

    box-shadow:
        0 24px 60px rgba(15,23,42,.10) !important;
}

/* Überschrift rechts */
.auth-card h2 {
    font-weight: 700 !important;
    letter-spacing: normal !important;
}

@media (min-width: 981px) {

    .auth-left {
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .auth-left-content {
        flex: 0 0 auto !important;
    }

    .auth-footer-desktop {
        position: absolute !important;
        left: 56px !important;
        bottom: 34px !important;
        z-index: 5 !important;
    }
}


@media (min-width: 981px) {

    .auth-left {
        position: relative;
        overflow: hidden;

        background:
            linear-gradient(
                rgba(251,146,60,.78),
                rgba(245,138,31,.78)
            ),
            url('/img/auth/auth.webp');

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;

        color: #fff;
    }

    .auth-left::before,
    .auth-left::after {
        display: none !important;
        content: none !important;
    }

    .brand,
    .auth-stats,
    .auth-footer-desktop {
        position: relative;
        z-index: 2;
    }

    .brand h1 {
        color: #fff;
        font-weight: 700;
        font-size: clamp(42px, 4vw, 64px);
        line-height: 1.02;
        text-shadow: 0 2px 20px rgba(0,0,0,.18);
    }

    .brand p {
        color: rgba(255,255,255,.95);
        text-shadow: 0 1px 12px rgba(0,0,0,.15);
    }

    .stat-card {
        background: rgba(255,255,255,.18);
        border: 1px solid rgba(255,255,255,.22);
        border-left: 4px solid rgba(255,255,255,.9);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        box-shadow: 0 12px 30px rgba(0,0,0,.12);
    }

    .stat-card strong {
        color: #fff;
        font-weight: 700;
    }

    .stat-card span {
        color: rgba(255,255,255,.92);
    }
}

.auth-left{
    background-image:url('/img/auth/auth.webp') !important;
    background-size:cover !important;
    background-position:center center !important;
}

@media (min-width: 981px) {

    .auth-left {
        background:
            linear-gradient(
rgba(251,146,60,.01),
rgba(234,88,12,.01)
            ),
            url('/img/auth/auth.webp') !important;

        background-size: cover !important;
        background-position: 58% center !important;
        background-repeat: no-repeat !important;
    }

    .auth-stats {
        max-width: 460px !important;
        margin-top: 28px !important;
        gap: 12px !important;
    }

    .stat-card {
        padding: 14px 18px !important;
        border-radius: 18px !important;
    }

    .stat-card strong {
        font-size: 16px !important;
    }

    .stat-card span {
        font-size: 13px !important;
    }
}
.apple-material-button {
    margin: 0 0 18px !important;
    background: #fff !important;
    border: 1px solid #dadce0 !important;
    color: #1f1f1f !important;
}

.apple-material-button:hover {
    background: #f8fafd !important;
    border-color: #dadce0 !important;
    box-shadow: 0 1px 2px rgba(60,64,67,.30),
                0 1px 3px rgba(60,64,67,.15);
}

.apple-material-button .gsi-material-button-state {
    display: none;
}

.apple-material-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-material-button-icon img {
    width: 18px;
    height: auto;
    display: block;
}

.apple-material-button-text {
    color: #1f1f1f !important;
}