/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --sidebar-bg: #386641;
  --page-bg: #faf7f0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--page-bg);
  overflow-x: hidden;
}

.sidebar {
  background-color: var(--sidebar-bg);
  box-shadow: 4px 0 10px rgba(56, 102, 65, 0.25);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  max-width: 400px;
  width: 100%;
  background-color: white;
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 10px 25px -5px rgba(56, 102, 65, 0.12);
}

/* Hide the browser's native date-picker icon; we show a custom Lucide control instead. */
input.hide-native-date-picker::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
