/* =========================
   Clean White Background
========================= */
#auth {
    background: #f4f6f9 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#auth h3{display:none;}
/* =========================
   Card Styling
========================= */
#auth .card {
    background: #ffffff !important;
    border-radius: 12px;
    padding: 0px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* =========================
   Heading
========================= */
#auth h1,
#auth h2,
#auth h3 {
    color: #111827;
    font-weight: 600;
}

/* =========================
   Labels
========================= */
#auth label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

/* =========================
   Input Fields
========================= */
#auth input.form-control {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
   padding: 12px 14px 12px 35px;
    transition: all 0.2s ease;
    color: #111827;
}

#auth input.form-control:focus {
    border-color: #41bc50;
    box-shadow: 0 0 0 3px rgba(65, 188, 80, 0.15);
    outline: none;
}

/* =========================
   Login Button (Brand)
========================= */
.btn-primary {
    background: #41bc50 !important;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff !important;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #36a844 !important;
    box-shadow: 0 6px 15px rgba(65, 188, 80, 0.25);
}

/* =========================
   Links
========================= */
#auth a {
    color: #41bc50;
    font-size: 14px;
    transition: 0.2s ease;
}
#auth .text-center.mb-5 {
    margin: 0px !important;
}
#auth a:hover {
    text-decoration: underline;
}

/* =========================
   Optional: Subtle Logo Accent
========================= */
#auth img {
    margin-bottom: 15px;
}