/* ==========================================================================
   Griply — Auth (Login / Registrierung)
   ========================================================================== */

.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .auth-wrap { grid-template-columns: 1fr; } }

/* Linke Spalte: Formular */
.auth-main { display: flex; flex-direction: column; padding: 2rem clamp(1.5rem, 5vw, 4rem); }
.auth-main .top { display: flex; align-items: center; justify-content: space-between; }
.auth-card { margin: auto; width: 100%; max-width: 400px; padding: 2.5rem 0; }
.auth-card h1 { font-size: 2rem; }
.auth-card .sub { margin-top: .6rem; color: var(--ink-muted); }
.auth-form { margin-top: 1.8rem; }
.auth-form .btn { margin-top: 1.5rem; }
.auth-alt { margin-top: 1.4rem; font-size: .92rem; color: var(--ink-muted); }
.auth-alt a { color: var(--accent-strong); font-weight: 600; }
.auth-alt a:hover { text-decoration: underline; }

/* Rechte Spalte: Marken-Panel (dezente Atmosphäre) */
.auth-aside { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: clamp(2.5rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: space-between; }
@media (max-width: 900px) { .auth-aside { display: none; } }
.auth-aside::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 12%, rgba(15,122,90,.45), transparent 70%), radial-gradient(50% 40% at 10% 90%, rgba(15,122,90,.22), transparent 70%); }
.auth-aside .brand { color: #fff; position: relative; }
.auth-aside .quote { position: relative; max-width: 30ch; }
.auth-aside .quote p { color: #fff; font-family: var(--font-display); font-size: 1.7rem; line-height: 1.25; letter-spacing: -0.02em; }
.auth-aside .quote .by { margin-top: 1rem; color: rgba(255,255,255,.6); font-size: .9rem; font-family: var(--font-sans); }
.auth-aside .foot { position: relative; font-size: .82rem; color: rgba(255,255,255,.5); }
