:root {
    --navy: #1B3A5C;
    --navy-dk: #122840;
    --navy-lt: #254d7a;
    --gold: #B8960C;
    --gold-lt: #d4ae1a;
    --gold-bg: #FFF8E7;
    --teal: #0D6E6E;
    --teal-lt: #E8F5F5;
    --purple: #5C3D8F;
    --purple-lt: #F3EEF9;
    --red: #C0392B;
    --red-lt: #FDF0EE;
    --green: #1A6B3C;
    --green-lt: #EAF5EE;
    --grey-50: #F8F9FA;
    --grey-100: #EEF0F3;
    --grey-200: #D8DCE3;
    --grey-400: #9BA3AF;
    --grey-600: #5A6270;
    --grey-800: #2D3340;
    --white: #FFFFFF;
    --sidebar-w: 280px;
    --header-h: 100px;
}

body {
    background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-lt) 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 0.25rem;
}

.login-container {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-container > form {
    padding: 20px 30px 30px 30px;
}

.login-title {
    font-weight: bold;
    margin-bottom: 0;
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    border: none;
}

.btn-primary:hover {
    background-color: var(--gold-lt);
}

.logo {
    width: 100%;
    height: var(--header-h);
    background: var(--navy-dk);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
    border-radius: 8px 8px 0 0;
    justify-content: center;
    margin-bottom: 20px;
}

.logo .header-emblem {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dk);
    flex-shrink: 0;
}

.logo .header-firm-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.logo .header-firm-name span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.error-block {
    color: red;
    width: 100%;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
}