.layout-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,107,157,0.2), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232,37,74,0.15), transparent 45%),
        var(--cream);
}

.auth-page { position: relative; width: 100%; max-width: 440px; }
.auth-page__decor span {
    position: absolute;
    font-size: 2rem;
    opacity: 0.35;
    animation: float 5s ease-in-out infinite;
    pointer-events: none;
}
.auth-page__decor .d1 { top: -20px; left: -10px; }
.auth-page__decor .d2 { top: 40%; right: -20px; animation-delay: 1s; }
.auth-page__decor .d3 { bottom: -10px; left: 30%; animation-delay: 2s; }

.auth-card {
    position: relative;
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid rgba(255,179,217,0.4);
}
.auth-card .brand { justify-content: center; margin-bottom: 1rem; }
.auth-card h1 { text-align: center; margin: 0 0 0.35rem; font-size: 1.5rem; }
.auth-card__sub { text-align: center; color: var(--text-muted); margin: 0 0 1.5rem; font-size: 0.95rem; }
.auth-card__footer { text-align: center; margin-top: 1.25rem; font-size: 0.95rem; }
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0d4de;
}

.auth-form .field:last-of-type {
    margin-bottom: 1rem;
}

.auth-google {
    margin-bottom: 0.25rem;
}

.auth-google__hint {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: center;
}

.auth-google__hint code {
    font-size: 0.72rem;
    background: #f5eef1;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}
