.customer-content {
  margin-top: 0;
  outline: none;
}

.customer-content h1 {
  margin-bottom: 2rem;
}

.profile-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
}

/* Felder */

.profile-form .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-form .form-group label {
  font-weight: 500;
}

.profile-form .form-group input,
.profile-form .form-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.9rem 1rem;

  border: 1px solid #ddd;
  border-radius: 8px;

  background: white;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

.profile-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.profile-form .form-group input:focus,
.profile-form .form-group select:focus {
  outline: none;
  border-color: #ff0098;
}

.profile-form .form-group .select-arrow {
  position: absolute;
  right: 0.85rem;
  top: 3.25rem;
  width: 9px;
  height: 9px;
  pointer-events: none;
  color: var(--color-text);
}

.profile-form .full-width {
  grid-column: 1 / -1;
}

/* Buttons */

.customer-profile .button-row {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.customer-profile .save-button,
.customer-profile .reset-button {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.9rem 1rem;
  border: none;
  border-radius: 8px;

  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}

.customer-profile .save-button {
  background: #ff0098;
}

.customer-profile .reset-button {
  background: #6b7280;
}

.customer-profile .save-button svg,
.customer-profile .reset-button svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #fff;
}