/* Baseline styling for the fullscreen-layout footer.
   Loaded before the page stylesheets block so auth.css can still pin the footer
   to the viewport on the short, centred auth pages. Long-form pages (terms,
   privacy, refund) never load auth.css and keep this static footer instead. */

.auth-footer {
    position: static;
    margin-top: 64px;
    padding: 24px 40px;
    background: rgba(10, 14, 26, 0.9);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

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

.auth-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.auth-footer-copyright span {
    color: #00d4ff;
    font-weight: 600;
}

.auth-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.auth-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    transition: color 0.3s ease;
    cursor: pointer;
}

.auth-footer-links a:hover,
.auth-footer-links a:focus {
    color: #00d4ff;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .auth-footer {
        padding: 20px 20px 24px;
        margin-top: 48px;
    }

    .auth-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .auth-footer-links {
        justify-content: center;
        gap: 16px;
    }
}
