body { font-family: 'Inter', system-ui, sans-serif; }

.auth-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 2.75rem;
  border-radius: 0.5rem;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  color: #1f2937;
  font-size: 0.875rem;
  transition: all 0.15s ease;
  outline: none;
  box-sizing: border-box;
}
.auth-input:focus {
  background: #fff;
  border-color: #fec72f;
  box-shadow: 0 0 0 3px rgba(254, 199, 47, 0.2);
}
.auth-input::placeholder { color: #9ca3af; }

.hive-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='60'%3E%3Cpath d='M26 0L52 15v30L26 60 0 45V15z' fill='none' stroke='rgba(255,255,255,0.13)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 52px 60px;
}

.btn-brand {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #fec72f;
  color: #1a1200;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.01em;
}
.btn-brand:hover { background: #FFB300; box-shadow: 0 4px 14px rgba(254,199,47,0.45); }

/* Password strength bar (reset2 page) */
.strength-bar {
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
  overflow: hidden;
  margin-top: 0.5rem;
}
.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}
