/* Auth Footer Styles */
footer.auth-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    z-index: 1000;
}

.auth-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

footer.auth-footer p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.auth-footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.auth-footer-links a:hover {
    color: #374151;
}

.auth-footer-links .separator {
    color: #d1d5db;
    font-size: 12px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    footer.auth-footer {
        background-color: rgba(17, 24, 39, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer.auth-footer p,
    .auth-footer-links a {
        color: #9ca3af;
    }

    .auth-footer-links a:hover {
        color: #d1d5db;
    }

    .auth-footer-links .separator {
        color: #4b5563;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .auth-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    footer.auth-footer {
        padding: 12px 0;
    }
}
