/* HRM MAROC SAAS - Styles personnalisés */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.features {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.features h2 {
  color: #2563eb;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.api-info {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.api-info h2 {
  color: #2563eb;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.api-info ul {
  list-style: none;
  padding: 0;
}

.api-info li {
  padding: 0.5rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  border-bottom: 1px solid #e5e7eb;
}

.api-info li:last-child {
  border-bottom: none;
}

.api-info strong {
  color: #059669;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  background: #d1fae5;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

form {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

button[type="submit"] {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: #1d4ed8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dashboard-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.dashboard-card h3 {
  color: #374151;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.dashboard-card p {
  color: #2563eb;
  font-size: 2rem;
  font-weight: bold;
}

h1 {
  color: #1f2937;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

h2 {
  color: #374151;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}