/* Login Page Styles */
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  background: #f6f7fb;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: #111827;
  text-align: center;
}

p {
  margin: 0 0 24px;
  color: #6b7280;
  font-size: 0.9rem;
  text-align: center;
}

label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin: 16px 0 6px;
  font-size: 0.9rem;
}

input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

input:focus {
  outline: none;
  border-color: #6366f1;
}

button {
  width: 100%;
  background: #6366f1;
  color: #fff;
  border: none;
  padding: 12px 16px;
  margin-top: 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #4f46e5;
}

button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.hint {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 12px;
  text-align: center;
}

.error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
  padding: 10px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 6px;
}
