.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background: #f9f9f9;
  padding: 2em;
}

.auth-box {
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  width: 100%;
}

.auth-box h1 {
  text-align: center;
  margin-bottom: 1em;
}

.form-group {
  margin-bottom: 1.5em;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
}

.form-group input {
  width: 100%;
  padding: 0.6em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.btn-primary {
  width: 100%;
  padding: 0.75em;
  background-color: #0051a2;
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #003f81;
}

.error-message {
  background: #ffd8d8;
  border-left: 4px solid #d11a2a;
  padding: 1em;
  margin-bottom: 1.5em;
  font-size: 0.95em;
  color: #721c24;
  border-radius: 4px;
}

.form-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.form-link {
  font-size: 0.9rem;
  color: #666;
}

.form-link a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.form-link a:hover {
  border-color: #444;
}
