:root {
    --primary-dark: #108c4a;
    /* Brand Green from live site */
    --primary-light: #8dc63f;
    --brand-green: #108c4a;
    --main-bg: #ffffff;
    /* Pure white background like live site */
}

body {
    font-family: 'Outfit', 'Public Sans', sans-serif;
    background-color: var(--main-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1.5rem;
    /* Add padding to prevent card sticking to screen edges on mobile */
}

.login-card {
    width: 100%;
    max-width: 440px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Softer shadow for white bg */
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    background: #f1f1f1;
    /* Light gray card like live site */
}

/* Responsiveness for smaller devices */
@media (max-width: 576px) {
    .login-card {
        padding: 2rem 1.5rem;
        /* Less padding on small screens */
        border-radius: 1rem;
    }
}

.form-label {
    font-weight: 700;
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.2s ease;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(16, 140, 74, 0.1);
}

.btn-primary {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: #0d703b;
    border-color: #0d703b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 140, 74, 0.2);
}

.input-group-text {
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: none;
    border-radius: 0 12px 12px 0;
    color: #94a3b8;
    padding-right: 1.15rem;
}

.password-input {
    border-right: none;
    border-radius: 12px 0 0 12px !important;
}

.text-primary-dark {
    color: var(--brand-green);
}

.form-check-input:checked {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
}