.qr-modal-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 24px 0;

    .utm-inputs{
        display: flex;
        gap: 8px;
        width: 100%;
    }
}

.qr-code-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.5px solid #0000003D;
  gap: 8px;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;

  &:hover{
    background-color: #f5f5f5;
  }

  .qr-submit-btn-new {
    padding: 0;
    background-color: transparent;
    color: #000;
    border: none;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    &:focus{
      outline: none;
    }
    &:hover{
      background-color: transparent;
    }
  }
}