.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.auth-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.auth-subtitle {
  margin: 0 0 24px;
  font-size: 14px;
  color: #6b7280;
}

.auth-form .field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.auth-form label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.auth-form .actions {
  margin-top: 4px;
}

.auth-form input[type="submit"] {
  width: 100%;
  padding: 11px 16px;
  background: #2e7d32;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.auth-form input[type="submit"]:hover {
  background: #276b2a;
}

.auth-form input[type="submit"]:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.field-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}