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

.settings-form {
  max-width: 1200px;
}

.settings-card__email,
.settings-card__password,
.settings-card__twofa,
.settings-card__delete-account {
  margin-top: 4rem;
}

.settings-form h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Formular */

.settings-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.settings-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.settings-form .form-group input {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  padding: 0.9rem 1rem;

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

  background: #fff;
  font: inherit;
  font-size: 1rem;
}

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

/* Two Factor Authentication */

.twofa-status-row {
  max-width: 700px;
  margin-bottom: 1rem;
}

.status-box {
  min-height: 52px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

.twofa-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.twofa-status__label {
  font-weight: 600;
}

.twofa-status__value {
  color: #6b7280;
  font-weight: 600;
}

.twofa-status-row.is-active .twofa-status__value {
  color: #16a34a;
}

.twofa-status-row.is-disabled .twofa-delete-button {
  display: none;
}

.twofa-delete-button {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 6px;

  background: transparent;
  cursor: pointer;
}

.twofa-delete-button:hover {
  background: #ececf0;
}

.twofa-delete-button svg {
  width: 18px;
  height: 18px;
  color: #4a5565;
}

.twofa-link-button {
  margin-top: 0.5rem;
  padding: 0;

  border: none;
  background: none;

  color: #ff0098;
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.twofa-link-button:hover {
  text-decoration: none;
}

/* Danger */

.delete-account-button {
  min-height: 52px;
  padding: 0.9rem 1rem;

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

  border: none;
  border-radius: 8px;

  background: #dc2626;
  color: #fff;

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

.delete-account-button svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* Buttons */

.customer-settingscontent .button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;

  width: calc(50% - 0.75rem);
  margin-top: 2rem;
}

.customer-settingscontent .save-button,
.customer-settingscontent .reset-button {
  width: 100%;
  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: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
}

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

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

.customer-settingscontent .save-button svg,
.customer-settingscontent .reset-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fff;
}

/* Password Field and Button */
.password-field {
  position: relative;
}

.password-field input {
  padding-right: 3rem;
}

.hide-pw {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}

.hide-pw:hover {
  color: #ff0098;
}

.password-eye-icon {
  width: 18px;
  height: 18px;
}