/* Simple, clean styles for Devise login and sign up pages */

.devise-auth-container {
  max-width: 400px;
  margin: 48px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 32px 28px 24px 28px;
}

.devise-auth-container h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 2rem;
  color: #222;
}

.devise-auth-form .field {
  margin-bottom: 18px;
}

.devise-auth-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #222;
}

.devise-auth-form input,
.devise-auth-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
  background: #f9fafb;
  transition: border 0.2s;
}

.devise-auth-form input:focus,
.devise-auth-form select:focus {
  outline: none;
  border-color: #2563eb;
}

.devise-auth-form .actions {
  margin-top: 24px;
  text-align: center;
}

.devise-auth-form input[type="submit"] {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.devise-auth-form input[type="submit"]:hover {
  background: #1d4ed8;
}

.devise-auth-form hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.devise-auth-form em {
  color: #6b7280;
  font-size: 0.95em;
}

.devise-auth-form .error,
.devise-auth-form .alert {
  color: #dc2626;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 16px;
  font-size: 0.98em;
}
