.form-tabs {
  max-width: 1200px; /* or 100% */
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.tab-buttons {
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 12px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  border: 2px solid #007bff;
  background: white;
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.tab-btn:hover {
  background-color: #e0f0ff;
}

.tab-btn.active {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.tab-content {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background-color: #fafafa;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}
