.product-form {
  max-width: 400px;

  .app-selection {
    flex-direction: row;
    align-items: center;

    .preforms-radio-label {
      margin-left: 8px;
    }

    .preforms-radio-description {
      font-size: 0.9rem;
      margin-left: auto;
    }
  }

  .preforms-textarea {
    width: 100%;
    border: 0;
    padding: 0.5rem 0.6rem;
    background: none;
  }

  .preforms-form-field-label {
    margin-left: 10px;
  }

  fieldset {
    border: 1px solid #e6e9ef;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  label {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.25rem;
    align-items: start;
  }

  .preforms-form-field {
    border: 1px solid #cfd6e3;
    border-radius: 6px;
  }

  .preforms-form-field:focus-within {
    outline: 3px solid rgba(99, 102, 241, 0.12);
    border-color: #6366f1;
  }

  .preforms-input:focus {
    outline: none;
    border: none;
  }

  .order-btn {
    background-color: var(--indigo);
    padding: 0.6rem 2rem;
    border: 1px solid var(--border);
    border-radius: 25px;
    font-weight: 700;
  }

  .amount-control {
    border: 1px solid #cfd6e3;
    border-radius: 25px;
    .preforms-form-field-row {
      display: flex;
    }
    .preforms-input {
      border: 0;
      width: 50px;
      text-align: center;
      background: none;
    }

    .preforms-input::-webkit-inner-spin-button {
      appearance: none;
    }

    button {
      background: none;
      border: none;
      color: inherit;
      font: inherit;
      cursor: pointer;
      padding: 0.4rem;
      height: 100%;
    }

    button:active {
      background: inherit;
      scale: 0.8;
    }
  }

  .preforms-radio-header {
    display: none;
  }
}
