body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
    overflow: visible !important;
}

.public-footer {
    padding: 1.5rem 0;
}
.auth-container {
    width: 100%;
    max-width: 450px;
}
.auth-card {
    padding: 2rem;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px -4px rgba(22, 28, 45, 0.12);
    background-color: #ffffff;
}
@font-face {
        font-family: '{{ preferred_font.name }}';
        src: url('{{ preferred_font.ttf_file.url }}') format('truetype'),
            url('{{ preferred_font.woff_file.url }}') format('woff'),
            url('{{ preferred_font.eot_file.url }}') format('eot'),
            url('{{ preferred_font.woff2_file.url }}') format('woff2');
        font-display: swap;
      }
body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, ul, ol, input, select, textarea, button {
font-family: '{{ preferred_font.name }}';
}
