/* ── Full copy of updated Login.css (only colors changed) ── */
* { box-sizing: border-box; margin: 0; }
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}
.login-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #0f172a;   /* black */
    background-image:
        radial-gradient(circle at 20% 80%, rgba(241,136,8,0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241,136,8,0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f1a 0%, #0f172a 40%, #0b111f 100%);
    padding: 56px 64px 56px 150px;
    position: relative;
    overflow: hidden;
}
.login-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.login-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
    position: relative;
    width: 100%;
}
.branding-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(241,136,8,0.18);
    color: #f18808;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(241,136,8,0.3);
    text-transform: uppercase;
}
.branding-title {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 18px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.branding-divider {
    width: 36px;
    height: 2px;
    background: #f18808;
    border-radius: 2px;
    margin-bottom: 18px;
    align-self: flex-start;
}
.branding-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f18808;
    margin: 0 0 12px 0;
}
.branding-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    margin: 0 0 44px 0;
    letter-spacing: 0.2px;
}
.branding-features {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px 16px;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}
.feature-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: none; }
.feature-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(241,136,8,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(241,136,8,0.25);
}
.feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.feature-title {
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffffff;
}
.feature-desc {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}
.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #eef0e8;
    position: relative;
    overflow: hidden;
}
.login-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 40px 36px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-logo {
    width: 64px;
    height: 64px;
    background: #f18808;  /* yellow accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #0f172a;       /* black text for contrast */
}

.card-logo-icon {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;   /* matches the black from your theme */
    letter-spacing: -1px;
}
.login-card h1 {
    color: #1a2e1a;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-align: center;
    letter-spacing: -0.3px;
}
.card-subtitle {
    color: #7a8a7a;
    font-size: 0.9rem;
    margin: 0 0 28px 0;
    text-align: center;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 14px;
    font-size: 1rem;
    color: #9aaa9a;
    z-index: 1;
}
.form-group input {
    padding: 14px 14px 14px 42px;
    border: 1.5px solid #e0e8e0;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #1a2e1a;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.form-group input:focus {
    outline: none;
    border-color: #f18808;
    box-shadow: 0 0 0 3px rgba(241,136,8,0.2);
}
.form-group input.error {
    border-color: #e05252;
    box-shadow: 0 0 0 3px rgba(224,82,82,0.1);
}
.form-group input:disabled {
    background: #f5f7f5;
    cursor: not-allowed;
    opacity: 0.7;
}
.form-group input::placeholder {
    color: #aabcaa;
}
.error-message {
    color: #e05252;
    font-size: 0.82rem;
    font-weight: 500;
    margin-left: 4px;
}
.login-button {
    background: #f18808;
    color: #0f172a;
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.2px;
}
.btn-arrow {
    font-size: 1.1rem;
    font-weight: 400;
}
.login-button:hover:not(:disabled) {
    background: #d97a00;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(241,136,8,0.4);
}
.login-button:active:not(:disabled) {
    transform: translateY(0);
}
.login-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}
/* OTP specific */
.otp-hint {
    text-align: center;
    color: #7a8a7a;
    font-size: 0.85rem;
    margin: 0;
}
.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
.otp-input {
    width: 45px;
    height: 45px;
    border: 1.5px solid #e0e8e0;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2e1a;
    background: #ffffff;
    transition: all 0.2s ease;
}
.otp-input:focus {
    outline: none;
    border-color: #f18808;
    box-shadow: 0 0 0 3px rgba(241,136,8,0.2);
}
.otp-input:disabled {
    background: #f5f7f5;
    cursor: not-allowed;
    opacity: 0.6;
}
/* Responsive */
@media (max-width: 768px) {
    .login-container { flex-direction: column; }
    .login-left {
        flex: 0 0 auto;
        padding: 40px 32px;
        justify-content: flex-start;
    }
    .login-branding { align-items: flex-start; text-align: left; }
    .branding-title { font-size: 2.8rem; }
    .branding-features { flex-direction: column; gap: 12px; }
    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 0 0 12px 0;
    }
    .feature-item:last-child { border-bottom: none; padding-bottom: 0; }
    .login-right {
        flex: 1;
        padding: 30px 20px;
        background: #eef0e8;
    }
    .login-card { padding: 36px 28px 28px; }
}
@media (max-width: 480px) {
    .login-left { padding: 30px 24px; }
    .branding-title { font-size: 2.2rem; }
    .login-right { padding: 20px; }
    .login-card {
        padding: 28px 20px 24px;
        border-radius: 18px;
    }
    .login-card h1 { font-size: 1.4rem; }
    .form-group input { padding: 12px 12px 12px 38px; font-size: 0.92rem; }
    .login-button { padding: 13px 20px; font-size: 0.95rem; }
    .otp-container { gap: 8px; }
    .otp-input { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* ── Additional styles for dashboard (unchanged, but included for completeness) ── */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
}
/* ... (keep the rest of your dashboard styles exactly as they were) ... */