:root {
    --color-50: #f5faeb;
    --color-100: #e7f4d3;
    --color-200: #d2ebab;
    --color-300: #b3dc7a;
    --color-400: #8bc53f;
    --color-500: #77b032;
    --color-600: #5b8c24;
    --color-700: #476b20;
    --color-800: #3a551f;
    --color-900: #33491e;
    --color-950: #18280b;

}
/* --- Login Specific Styles --- */
.login-page-wrapper {
    background: radial-gradient(circle at top right, #f8fafc, #eff6ff); /* Subtle soft gradient background */
}

.login-card-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.shadow-premium {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02) !important;
}

.login-logo {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.login-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-900);
    margin-bottom: 0.5rem;
}

/* --- Form Improvements --- */
.form-label-custom {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}

.input-group-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 5;
}

.form-control-modern {
    width: 100%;
    padding: 12px 16px 12px 48px;
    background-color: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control-modern:focus {
    background-color: #fff;
    border-color: var(--color-500, #2563eb);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
}

/* --- Buttons & Links --- */
.btn-login {
    background-color: var(--color-900); /* Dark theme for trust */
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--color-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.forgot-link, .signup-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-600, #2563eb);
    text-decoration: none;
}

.forgot-link:hover, .signup-link:hover {
    text-decoration: underline;
}

.x-small {
    font-size: 0.75rem;
}

/* --- Custom Checkbox --- */
.custom-check .form-check-input:checked {
    background-color: var(--color-900);
    border-color: var(--color-900);
}
/* --- Wide Layout Logic --- */
.login-wide-card {
    width: 100%;
    max-width: 1000px; /* Much wider for a premium feel */
    min-height: 600px;
    background: #fff;
    display: flex;
}

.brand-section {
    background: linear-gradient(135deg, var(--color-900) 0%, var(--color-400) 100%);
    position: relative;
    overflow: hidden;
}

/* Add a subtle decorative pattern to the brand side */
.brand-section::after {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.form-content-max-width {
    width: 100%;
    max-width: 400px; /* Form stays readable while card is wide */
}

/* --- Input Refinements --- */
.form-control-modern {
    padding: 14px 16px 14px 48px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.form-control-modern:focus {
    border-color: var(--color-900);
    box-shadow: 0 0 0 4px rgba(30, 41, 59, 0.08);
    background: #fff;
}

/* --- Visual Elements --- */
.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--color-300);
    border-radius: 50%;
    opacity: 0.5;
}

.shadow-premium {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

.btn-login {
    background: var(--color-900);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-login:hover {
    background: var(--color-500);
    transform: translateY(-1px);
}
/* Larger, bolder Title */
.login-title-large {
    font-size: 2.25rem; /* Equivalent to h1 or larger */
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -1px;
}

/* Custom Border Accent under the title */
.title-accent-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px; /* Short stylish border */
    height: 4px;
    background: #1e293b; /* Matches your dark theme */
    border-radius: 2px;
}

/* Footer border tweak */
.border-top {
    border-color: #f1f5f9 !important;
}

/* Adjust User Icon */
.ti-user {
    color: #94a3b8;
}