:root {
  color-scheme: light dark;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #111827;
}

.card {
  background: #ffffff;
  width: min(380px, 100vw - 2rem);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 1.25rem;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: #374151;
}

input[type=email], input[type=password] {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input[type=email]:focus, input[type=password]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

button {
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  background: #111827;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

button:hover {
  background: #1f2937;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

/*# sourceMappingURL=login-2736fab291.output.css.map */
