/**
 * Public footer on authentication pages (login, forgot password, reset, 2FA, etc.)
 * Visual alignment with admin-auth: Inter, neutral palette, same font size.
 */
.public-footer {
    margin-top: 2.5rem;
    padding: 0 1.5rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-family: "Inter", sans-serif;
    color: #475569;
}

.public-footer-inner {
    max-width: 56rem;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.public-footer-block {
    width: 100%;
    padding: 1rem 1.25rem 1.1rem;
}

.public-footer-topline {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
}

.public-footer-brand-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.45;
    margin-bottom: 0.25rem;
}

.public-footer-brand {
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.public-footer-dot {
    color: #94a3b8;
}

.public-footer-trust {
    color: #64748b;
}

.public-footer-copyright {
    color: #334155;
    line-height: 1.5;
    margin-top: 0.1rem;
}

.public-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.public-footer-item {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.68rem;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid #dbe3ee;
    background: #f8fafc;
    transition: all 0.15s ease;
}

.public-footer a {
    color: #334155;
    text-decoration: none;
}

.public-footer a:hover {
    color: #0f172a;
    border-color: #c5d4f5;
    background: #eef4ff;
}
