/* ===========================
   CUSTOM OVERRIDES (Mobile-First)
   =========================== */
   
  body, div { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; bg-light)}

/* Keep the card, but let Bootstrap handle sizing */
.ep-card {
    background: #fff;
    padding: 15px;
    width:100%;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Keep the error message styling */
.error-message {
    color: red;
    margin-bottom: 15px;
}

/* Keep the footer styling */
.ep-footer {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding: 20px;
}

/* ===========================
   SPECIFIC LOGIN PAGE TWEAKS (Optional)
   =========================== */
/* Only if you really need a full-height centered layout */
.login-wrapper {
    min-height: 100dvh; /* Better than 100vh for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 20px; /* Adds breathing room on very small screens */
}

/* Keep light green background on focus for all .bg-success-subtle form controls */
.form-control.bg-success-subtle:focus,
.form-select.bg-success-subtle:focus {
    background-color: #d4edd4 !important;  /* slightly deeper green for focus */
    border-color: #2e7d32;
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}