/* ================================
   FMS-CRM Common App Styles
   Compatible: PHP 7.4 → latest
================================ */

:root{
  --radius: 14px;
  --shadow: 0 20px 40px rgba(2,6,23,.08);
  --border: rgba(15,23,42,.12);
  --text: #0f172a;
  --muted: #64748b;
}

body{
  color: var(--text);
  background-color: #f4f7fb;
}

/* Cards */
.card,
.login-card{
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Forms */
.form-label{
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-control{
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.form-control:focus{
  box-shadow: none;
  border-color: var(--primary);
}

/* Buttons */
.btn{
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* Utilities */
.text-muted{
  color: var(--muted) !important;
}
