@font-face {
    font-family: 'sototafont';
    src: url('Lexend-VariableFont_wght.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'sototafont';
    src: url('SolaimanLipi.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    unicode-range: U+0980-09FF;
}

*, html, body, input, table, tr, td, span, p, div, button, a, h1, h2, h3, h4, h5, h6 {
    font-family: 'sototafont', sans-serif;
    box-sizing: border-box;
}
:root {
    --primary-color: #9e010a;
    --secondary-color: #ab696c;
    --success-color: #00920a;
    --danger-color: #e37200;
    --warning-color: #ffc107;
    --info-color: #9e010a;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --body-bg: #f0f2f5;
    --card-bg: #ffffff;
    --font-family-sans-serif: 'sototafont', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
body {
    background-color: var(--body-bg);
    font-family: var(--font-family-sans-serif);
    color: var(--dark-color);
}
.auth-form-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-auth {
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: none;
    padding: 1.5rem;
}
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
/* NEW: Responsive styles for Offcanvas Sidebar */
@media (min-width: 992px) {
    .main-content {
        /* This matches Bootstrap's grid system for lg screens */
        padding-left: 2rem; 
    }
}