@font-face {
    font-family: 'Inter';
    /* Inter_18pt-Regular.ttf */
    src: url('../fonts/inter/static/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/static/Inter_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/static/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/static/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/static/Inter_18pt-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1d3d62;
    background-color: #f8f9fa;
    height: 100vh;
}


h1, h2, h3, h4, h5 {
    font-weight: 600;
}

button, input {
    font-weight: 500;
}


.login-container {
    height: 100vh;
}

.branding-section {
    background-color: #1E293B;
    color: #ffffff;
}

.branding-section img {
    max-width: 180px;
}

.powered-by img {
    max-width: 12rem;
}

.login-form-container {
    max-width: 420px;
    width: 100%;
}

.btn-primary {
    background-color: #fa6820 !important;
    border-color: #1E293B !important;
    border-width: 0.15rem !important;
}

.btn-primary:hover {
    background-color: #1E293B !important;
    border-color: #e85d1d !important;
    border-width: 0.15rem !important;
}

.form-control:focus {
    border-color: #1d3d62;
    box-shadow: none;
}

/* Mobile / Tablet: hide branding section */
@media (max-width: 991.98px) {
    .branding-section {
        display: none;
    }
}