:root {
    --bs-body-font-family: 'Lora', serif;
    --bs-font-sans-serif: 'Lora', serif;
}

/* Base Body Font Rule */
body {
    font-family: 'Lora', serif;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force headings and buttons to inherit Lora */
h1, h2, h3, h4, h5, h6, 
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
button, input, select, textarea, .btn {
    font-family: 'Lora', serif;
}

/* Optional Utility Classes */
.font-lora {
    font-family: 'Lora', serif;
    font-optical-sizing: auto;
}

/* Specific Weight Helper Classes */
.fw-lora-regular { font-weight: 400; }
.fw-lora-medium  { font-weight: 500; }
.fw-lora-semibold{ font-weight: 600; }
.fw-lora-bold    { font-weight: 700; }

/* Modern Split-Layout Dark Theme */
:root {
    --auth-bg-dark: #121824;
    --auth-card-bg: #1a2232;
    --auth-input-bg: #252e42;
    --auth-input-border: #333f58;
    --auth-accent-blue: #2563eb;
    --auth-accent-glow: #3b82f6;
    --auth-text-muted: #8e9bb0;
}

body.auth-page {
    background-color: var(--auth-bg-dark);
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
}

.auth-split-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, #0e131f 0%, #171f30 100%);
}

.auth-split-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('../images/auth-bg.jpg') no-repeat center center / cover;
    opacity: 0.15;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.auth-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    padding: 3rem 2rem;
}

/* Brand Logo Styling */
.auth-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 3.5rem;
}

.auth-brand-logo {
    height: 36px; /* Adjust height to fit your logo scale */
    width: auto;
    object-fit: contain;
}

.auth-brand-name {
    font-weight: 700;
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.auth-tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--auth-text-muted);
    margin-bottom: 0.5rem;
}

.auth-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-subheading {
    color: var(--auth-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

/* Custom Input Field Styling (Screenshot Concept) */
.custom-input-group {
    position: relative;
    background-color: var(--auth-input-bg);
    border: 1.5px solid var(--auth-input-border);
    border-radius: 1rem;
    padding: 0.65rem 1.25rem;
    transition: all 0.25s ease;
}

.custom-input-group:focus-within {
    border-color: var(--auth-accent-glow);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.custom-input-label {
    display: block;
    font-size: 0.7rem;
    color: var(--auth-text-muted);
    font-weight: 500;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-input-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.custom-input-field::placeholder {
    color: rgba(142, 155, 176, 0.5);
}

/* Checkbox & CTA */
.custom-check-input {
    background-color: var(--auth-input-bg);
    border: 1px solid var(--auth-input-border);
    width: 18px;
    height: 18px;
    border-radius: 0.25rem;
}

.custom-check-input:checked {
    background-color: var(--auth-accent-blue);
    border-color: var(--auth-accent-blue);
}

.btn-auth-primary {
    background-color: var(--auth-accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 1rem;
    padding: 0.95rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.btn-auth-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}