/* style.css – modern light design */

html {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #222;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 400px;
  width: 90%;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

h1, h2 {
  margin-top: 0;
  color: #0d6efd; /* vibrant accent */
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: #0b5ed7;
}

.error {
  margin-top: 1rem;
  color: #dc3545;
  display: none;
}
