/* Madmin forms.css */
.form-group { margin-bottom: 1rem; }
.form-input { width: 100%; }
.form-label { color: #111827; line-height: 1.5rem; font-weight: 500; font-size: 0.875rem; }
.error { color: #ef4444; }
.required { color: #ef4444; font-weight: 600; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
[type='text'], [type='email'], [type='password'] {
  background-color: #fff;
  border-radius: 0.375rem;
  box-shadow: inset 0 0 0 1px #9ca3af;
  line-height: 1.5rem;
  padding: 0.375rem 0.75rem;
}
.form-description { color: #6b7280; }

/* Madmin buttons.css */
.btn {
  border-radius: 0.375rem;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 0.75rem;
}
.btn-primary {
  background-color: #2563eb;
  color: white;
}
.btn-secondary {
  background-color: white;
  color: #1f2937;
  box-shadow: inset 0 0 0 1px #9ca3af;
}
.btn-danger {
  background-color: white;
  color: #ef4444;
  box-shadow: inset 0 0 0 1px #ef4444;
}
.alert-danger {
  color: #ef4444;
  background: #fee2e2;
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 2rem;
  max-width: 400px;
  margin: 2rem auto;
}
.header {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
