/* ============================================ */
/* ADMIN LOGIN SPECIFIC STYLES */
/* ============================================ */

/* 
   Most styles are inherited from authentication.css 
   This file contains only admin-specific overrides
*/

/* Ensure the left side has the primary color background */
.auth-left {
  background: var(--primary-solid) !important;
}

/* Custom styling for the demo credentials box */
.demo-credentials {
  background-color: var(--background-secondary);
  border: 1px dashed var(--border-color);
}

/* Ensure the alert is visible and styled correctly */
#infoAlert {
  border-left: 4px solid var(--info);
}

/* Force Password Change Modal Styles */
.modal-content.border-warning {
  border: none;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.bg-warning-subtle {
  background-color: rgba(255, 193, 7, 0.1) !important;
}

.text-warning-emphasis {
  color: #856404 !important;
}

/* Dark mode adjustments for the modal */
[data-bs-theme="dark"] .text-warning-emphasis {
  color: #ffc107 !important;
}

[data-bs-theme="dark"] .bg-warning-subtle {
  background-color: rgba(255, 193, 7, 0.2) !important;
}