/* 
 * TexIQ Minimal Light Dashboard Theme
 * Inspired by Langfuse and shadcn/ui Light Mode Design Language
 */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa; /* zinc-50 */
    --bg-sidebar: #fafafa;
    --card-bg: #ffffff;
    --card-border: #e4e4e7; /* zinc-200 */
    
    --text-primary: #09090b; /* zinc-950 */
    --text-secondary: #71717a; /* zinc-500 */
    --text-muted: #a1a1aa; /* zinc-400 */
    
    --accent-primary: #18181b; /* zinc-900 */
    --accent-hover: #27272a;
    --border-focus: #18181b;
    
    --emerald: #059669; /* green-600 */
    --emerald-bg: rgba(5, 150, 105, 0.08);
    --emerald-border: rgba(5, 150, 105, 0.2);
    
    --rose: #dc2626; /* red-600 */
    --rose-bg: rgba(220, 38, 38, 0.08);
    --rose-border: rgba(220, 38, 38, 0.2);
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-fast: all 0.15s ease-in-out;
}

/* Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Hide glowing background blobs entirely */
.glow-bg {
    display: none !important;
}

/* Flat Card Style */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.glass-card:hover {
    border-color: #a1a1aa; /* zinc-400 */
}

/* Auth / Login Overlay */
.screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.screen-overlay.hide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.brand-header {
    text-align: center;
    margin-bottom: 24px;
}

.brand-logo-glow {
    width: 48px;
    height: 48px;
    background: #f4f4f5; /* zinc-100 */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.brand-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.brand-header p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 4px;
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--border-focus);
}

.help-text {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: #18181b; /* zinc-900 */
    color: #ffffff;
    border-color: #18181b;
}

.btn-primary:hover {
    background: #27272a;
    border-color: #27272a;
}

.btn-secondary {
    background: #ffffff;
    border-color: var(--card-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: #f4f4f5;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.05);
    border-color: var(--rose-border);
    color: #dc2626;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

.btn-block {
    width: 100%;
    padding: 10px;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: #f4f4f5;
    color: var(--text-primary);
}

/* App Main Layout Grid */
.app-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.app-layout.hide {
    display: none;
}

/* Sidebar Styling */
.sidebar {
    background: var(--bg-sidebar);
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.sidebar-header {
    margin-bottom: 24px;
    padding: 8px;
}

.sidebar-header .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.badge-vlm {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    background: #f4f4f5;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 1px 5px;
    border-radius: 4px;
    margin-top: 6px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.nav-item:hover {
    background: #f4f4f5;
    color: var(--text-primary);
}

.nav-item.active {
    background: #f4f4f5;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.sidebar-footer {
    border-top: 1px solid var(--card-border);
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 28px;
    height: 28px;
    background: #e4e4e7;
    color: var(--text-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 12px;
    font-weight: 500;
}

.user-role {
    font-size: 10px;
    color: var(--text-muted);
}

/* Main Workspace Area */
.main-content {
    padding: 32px;
    overflow-y: auto;
    height: 100vh;
    background: #ffffff;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 16px;
}

.top-bar h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.status-indicators {
    display: flex;
    gap: 16px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.pulse-dot.green {
    background-color: var(--emerald);
}

.pulse-dot.purple {
    background-color: #8b5cf6;
}

/* Tab panes management */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Metrics Grid Cards */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.metric-card {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
}

.metric-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--text-primary);
}

.text-red {
    color: #dc2626 !important;
}

/* Projects Section */
.section-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-actions h2 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.project-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
}

.project-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.project-meta {
    font-size: 11px;
    color: var(--text-muted);
}

.project-contact {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-secondary);
}

.project-contact div {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.project-stats {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--card-border);
    padding-top: 12px;
}

.project-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-weight: 600;
    font-size: 13px;
}

.stat-lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.project-card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

/* Modals Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.4);
    backdrop-filter: blur(2px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    max-width: 460px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-content-large {
    max-width: 740px;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

.modal-sub-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.btn-close:hover {
    color: var(--text-primary);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

/* Copy API Key Single Visual */
.border-glow-green {
    border-top: 2px solid var(--emerald);
}

.header-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
}

.icon-success-wrap {
    color: var(--emerald);
    margin-bottom: 8px;
}

.warning-text {
    font-size: 12px;
    color: #b91c1c;
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid var(--rose-border);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.copy-box {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.copy-box input {
    font-family: monospace;
    background: #f4f4f5;
    color: var(--text-primary);
    font-size: 13px;
}

.btn-close-copy {
    background: #18181b;
    color: #ffffff;
}

.btn-close-copy:hover {
    background: #27272a;
}

/* Tables design */
.table-container {
    overflow-x: auto;
    width: 100%;
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th, .data-table td {
    padding: 12px 14px;
    font-size: 13px;
    border-bottom: 1px solid var(--card-border);
}

.data-table th {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 12px;
    background: #f4f4f5; /* zinc-100 */
}

.data-table tbody tr:hover {
    background: #fafafa;
}

.text-center {
    text-align: center;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.badge-success {
    background: var(--emerald-bg);
    color: var(--emerald);
    border: 1px solid var(--emerald-border);
}

.badge-danger {
    background: var(--rose-bg);
    color: var(--rose);
    border: 1px solid var(--rose-border);
}

.badge-neutral {
    background: #f4f4f5;
    color: var(--text-secondary);
    border: 1px solid var(--card-border);
}

/* Toggle Switches */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e4e4e7;
    transition: .2s;
    border-radius: 18px;
    border: 1px solid var(--card-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2px;
    bottom: 2px;
    background-color: #ffffff;
    transition: .2s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

input:checked + .slider {
    background-color: #18181b;
    border-color: #18181b;
}

input:checked + .slider:before {
    transform: translateX(14px);
    background-color: #ffffff;
}

/* Logs and stats */
.logs-stats {
    padding: 16px 20px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stats-header h3 {
    font-size: 14px;
    font-weight: 600;
}

.progress-bar-container {
    background: #f4f4f5;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    background: #18181b;
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.logs-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-header h3 {
    font-size: 14px;
    font-weight: 600;
}

.table-details-text {
    display: block;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: monospace;
    font-size: 11px;
}

/* Playground / Sandbox Layout */
.playground-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: start;
}

.playground-form {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.playground-form h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 10px;
}

.toggle-container {
    display: flex;
    background: #f4f4f5;
    padding: 2px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid var(--card-border);
}

.toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.toggle-btn.active {
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.drop-zone {
    border: 1px dashed var(--card-border);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    background: #fafafa;
}

.drop-zone:hover {
    border-color: var(--border-focus);
    background: #f4f4f5;
}

.drop-icon {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.drop-zone p {
    font-size: 12px;
    color: var(--text-secondary);
}

.image-preview-box {
    position: relative;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 12px;
}

.image-preview-box img {
    width: 100%;
    display: block;
    max-height: 200px;
    object-fit: contain;
    background: #fafafa;
}

.btn-close-sm {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playground-result {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.ocr-output-container {
    position: relative;
    min-height: 240px;
    background: #fafafa;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 16px;
}

#ocr-playground-output-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.spinner-circle {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
    margin-bottom: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ocr-output-container pre {
    white-space: pre-wrap;
    word-break: break-all;
    font-family: monospace;
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.6;
}

.ocr-output-container pre.placeholder {
    color: var(--text-muted);
}

/* Toast Notifications helper */
.toast {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-fast);
    font-size: 13px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-error {
    border-color: var(--rose-border);
    color: #dc2626;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.15s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.15s ease-out;
}

.animate-scale-up {
    animation: scaleUp 0.15s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(8px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.98); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #e4e4e7;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4d4d8;
}

/* Global utility classes */
.hide {
    display: none !important;
}

/* Split Login Layout - Premium Black & White */
.split-login-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-left-brand {
    flex: 1.2;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

.brand-left-content {
    max-width: 460px;
    text-align: left;
}

.brand-left-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    filter: invert(1);
    object-fit: contain;
}

.brand-left-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.brand-left-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: #a1a1aa; /* zinc-400 */
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-left-description {
    font-size: 15px;
    line-height: 1.7;
    color: #d4d4d8; /* zinc-300 */
    font-weight: 300;
}

.login-right-form {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.login-card-split {
    width: 100%;
    max-width: 360px;
}

.login-card-split .brand-header {
    text-align: left;
    margin-bottom: 32px;
}

.login-card-split .brand-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.login-card-split .brand-header p {
    font-size: 14px;
    color: #71717a; /* zinc-500 */
}

/* Ensure clean black and white colors on form inputs/buttons inside split screen login */
.login-card-split input {
    background: #ffffff !important;
    border: 1px solid #e4e4e7 !important;
    color: #000000 !important;
    border-radius: 4px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
}

.login-card-split input:focus {
    border-color: #000000 !important;
    box-shadow: none !important;
}

.login-card-split .btn-primary {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    padding: 12px !important;
    margin-top: 8px !important;
}

.login-card-split .btn-primary:hover {
    background: #27272a !important;
    border-color: #27272a !important;
}

.login-card-split label {
    color: #000000 !important;
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .login-left-brand {
        display: none;
    }
    .login-right-form {
        padding: 24px;
    }
}
