body {
  font-family: 'Inter', sans-serif;
  background: #f5f6fa;
  margin: 0;
  font-size: 13px;
}

.register-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
}

.register-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.8rem;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.3s ease-in;
}

.register-logo {
  display: block;
  width: 100px;
  margin: 0 auto 0.8rem auto;
}

.title {
  text-align: center;
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.step-card {
  display: none;
}

.step-card.active {
  display: block;
}

.step-title {
  font-weight: 600;
  color: #444;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.radio-group label {
  display: block;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.5rem;
  background: #fafafa;
  transition: 0.25s;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

.radio-group label:hover {
  background: #fffbe6;
  border-color: #b8860b;
}

.input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 0.9rem;
}

.input:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.25);
  outline: none;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  font-size: 0.9rem;
}

.btn {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn.primary {
  background: #b8860b;
  color: #fff;
}

.btn.primary:hover {
  background: #9f7508;
}

.btn.secondary {
  background: #e5e7eb;
  color: #333;
}

.btn.secondary:hover {
  background: #d1d5db;
}

.btn.full {
  width: 100%;
}

.actions {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1rem;
}

.msg {
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.4rem;
}

.msg.error {
  color: #dc2626;
}

.msg.muted {
  color: #6b7280;
}

/* Spinner */
.spinner-overlay {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #b8860b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Thank You Screen */
.thankyou {
  display: none;
  text-align: left;
  color: #333;
  background: #f9fff7;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1e7d4;
  font-size: 0.85rem;
  line-height: 1.5;
}

.thankyou h3 {
  color: #137c2a;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.thankyou a {
  color: #b8860b;
  text-decoration: none;
  font-weight: 500;
}

.thankyou a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
