.user-type-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.user-type-switch input[type="radio"] {
  display: none;
}

.user-type-switch label {
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid var(--template-color-0);
  border-radius: 20px;
  margin: 0 5px;
  transition: background-color 0.3s, color 0.3s;
}

.user-type-switch input[type="radio"]:disabled + label {
  background-color: #e9ecef;
  color: #6c757d;
  border: 1px solid #ced4da;
  cursor: not-allowed;
}

.user-type-switch input[type="radio"]:checked + label {
  background-color: var(--template-color-0);
  color: white;
}

.user-type-switch {
  display: none;
}
